AWSLambdaListFunctionsRequest

Objective-C

@interface AWSLambdaListFunctionsRequest

Swift

class AWSLambdaListFunctionsRequest
  • Set to ALL to include entries for all published versions of each function.

    Declaration

    Objective-C

    @property (nonatomic) AWSLambdaFunctionVersion functionVersion;

    Swift

    var functionVersion: AWSLambdaFunctionVersion { get set }
  • Specify the pagination token that’s returned by a previous request to retrieve the next page of results.

    Declaration

    Objective-C

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

    Swift

    var marker: String? { get set }
  • For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, us-east-1 filters the list of functions to include only Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set FunctionVersion to ALL.

    Declaration

    Objective-C

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

    Swift

    var masterRegion: String? { get set }
  • The maximum number of functions to return in the response. Note that ListFunctions returns a maximum of 50 items in each response, even if you set the number higher.

    Declaration

    Objective-C

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

    Swift

    var maxItems: NSNumber? { get set }