AWSEC2DescribeNetworkInterfacePermissionsRequest

Objective-C

@interface AWSEC2DescribeNetworkInterfacePermissionsRequest

Swift

class AWSEC2DescribeNetworkInterfacePermissionsRequest

Contains the parameters for DescribeNetworkInterfacePermissions.

  • One or more filters.

    • network-interface-permission.network-interface-permission-id - The ID of the permission.

    • network-interface-permission.network-interface-id - The ID of the network interface.

    • network-interface-permission.aws-account-id - The Amazon Web Services account ID.

    • network-interface-permission.aws-service - The Amazon Web Service.

    • network-interface-permission.permission - The type of permission (INSTANCE-ATTACH | EIP-ASSOCIATE).

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2Filter *> *_Nullable filters;

    Swift

    var filters: [AWSEC2Filter]? { get set }
  • The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. If this parameter is not specified, up to 50 results are returned by default. For more information, see Pagination.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • The network interface permission IDs.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable networkInterfacePermissionIds;

    Swift

    var networkInterfacePermissionIds: [String]? { get set }
  • The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }