Class: Aws::Lambda::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::Lambda::Client
- Includes:
- ClientStubs
- Defined in:
- lib/aws-sdk-lambda/client.rb
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#add_permission(params = {}) ⇒ Types::AddPermissionResponse
Adds a permission to the resource policy associated with the specified AWS Lambda function.
-
#create_alias(params = {}) ⇒ Types::AliasConfiguration
Creates an alias that points to the specified Lambda function version.
-
#create_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Identifies a stream as an event source for a Lambda function.
-
#create_function(params = {}) ⇒ Types::FunctionConfiguration
Creates a new Lambda function.
-
#delete_alias(params = {}) ⇒ Struct
Deletes the specified Lambda function alias.
-
#delete_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Removes an event source mapping.
-
#delete_function(params = {}) ⇒ Struct
Deletes the specified Lambda function code and configuration.
-
#get_account_settings(params = {}) ⇒ Types::GetAccountSettingsResponse
Returns a customer’s account settings.
-
#get_alias(params = {}) ⇒ Types::AliasConfiguration
Returns the specified alias information such as the alias ARN, description, and function version it is pointing to.
-
#get_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Returns configuration information for the specified event source mapping (see CreateEventSourceMapping).
-
#get_function(params = {}) ⇒ Types::GetFunctionResponse
Returns the configuration information of the Lambda function and a presigned URL link to the .zip file you uploaded with CreateFunction so you can download the .zip file.
-
#get_function_configuration(params = {}) ⇒ Types::FunctionConfiguration
Returns the configuration information of the Lambda function.
-
#get_policy(params = {}) ⇒ Types::GetPolicyResponse
Returns the resource policy associated with the specified Lambda function.
-
#invoke(params = {}) ⇒ Types::InvocationResponse
Invokes a specific Lambda function.
-
#invoke_async(params = {}) ⇒ Types::InvokeAsyncResponse
This API is deprecated.
-
#list_aliases(params = {}) ⇒ Types::ListAliasesResponse
Returns list of aliases created for a Lambda function.
-
#list_event_source_mappings(params = {}) ⇒ Types::ListEventSourceMappingsResponse
Returns a list of event source mappings you created using the ‘CreateEventSourceMapping` (see CreateEventSourceMapping).
-
#list_functions(params = {}) ⇒ Types::ListFunctionsResponse
Returns a list of your Lambda functions.
-
#list_tags(params = {}) ⇒ Types::ListTagsResponse
Returns a list of tags assigned to a function when supplied the function ARN (Amazon Resource Name).
-
#list_versions_by_function(params = {}) ⇒ Types::ListVersionsByFunctionResponse
List all versions of a function.
-
#publish_version(params = {}) ⇒ Types::FunctionConfiguration
Publishes a version of your function from the current snapshot of $LATEST.
-
#remove_permission(params = {}) ⇒ Struct
You can remove individual permissions from an resource policy associated with a Lambda function by providing a statement ID that you provided when you added the permission.
-
#tag_resource(params = {}) ⇒ Struct
Creates a list of tags (key-value pairs) on the Lambda function.
-
#untag_resource(params = {}) ⇒ Struct
Removes tags from a Lambda function.
-
#update_alias(params = {}) ⇒ Types::AliasConfiguration
Using this API you can update the function version to which the alias points and the alias description.
-
#update_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
You can update an event source mapping.
-
#update_function_code(params = {}) ⇒ Types::FunctionConfiguration
Updates the code for the specified Lambda function.
-
#update_function_configuration(params = {}) ⇒ Types::FunctionConfiguration
Updates the configuration parameters for the specified Lambda function by using the values provided in the request.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(*args) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(*args) ⇒ Client
Returns a new instance of Client.
142 143 144 |
# File 'lib/aws-sdk-lambda/client.rb', line 142 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2928 2929 2930 |
# File 'lib/aws-sdk-lambda/client.rb', line 2928 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2931 2932 2933 |
# File 'lib/aws-sdk-lambda/client.rb', line 2931 def errors_module Errors end |
Instance Method Details
#add_permission(params = {}) ⇒ Types::AddPermissionResponse
Adds a permission to the resource policy associated with the specified AWS Lambda function. You use resource policies to grant permissions to event sources that use push model. In a push model, event sources (such as Amazon S3 and custom applications) invoke your Lambda function. Each permission you add to the resource policy allows an event source, permission to invoke the Lambda function.
For information about the push model, see [AWS Lambda: How it Works].
If you are using versioning, the permissions you add are specific to the Lambda function version or alias you specify in the ‘AddPermission` request via the `Qualifier` parameter. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:AddPermission` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html [2]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
289 290 291 292 |
# File 'lib/aws-sdk-lambda/client.rb', line 289 def (params = {}, = {}) req = build_request(:add_permission, params) req.send_request() end |
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 |
# File 'lib/aws-sdk-lambda/client.rb', line 2906 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-lambda' context[:gem_version] = '1.0.0' Seahorse::Client::Request.new(handlers, context) end |
#create_alias(params = {}) ⇒ Types::AliasConfiguration
Creates an alias that points to the specified Lambda function version. For more information, see [Introduction to AWS Lambda Aliases].
Alias names are unique for a given function. This requires permission for the lambda:CreateAlias action.
[1]: docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
346 347 348 349 |
# File 'lib/aws-sdk-lambda/client.rb', line 346 def create_alias(params = {}, = {}) req = build_request(:create_alias, params) req.send_request() end |
#create_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Identifies a stream as an event source for a Lambda function. It can be either an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS Lambda invokes the specified function when records are posted to the stream.
This association between a stream source and a Lambda function is called the event source mapping.
This event source mapping is relevant only in the AWS Lambda pull model, where AWS Lambda invokes the function. For more information, see [AWS Lambda: How it Works] in the *AWS Lambda Developer Guide*.
You provide mapping information (for example, which stream to read from and which Lambda function to invoke) in the request body.
Each event source, such as an Amazon Kinesis or a DynamoDB stream, can be associated with multiple AWS Lambda function. A given Lambda function can be associated with multiple AWS event sources.
If you are using versioning, you can specify a specific function version or an alias via the function name parameter. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:CreateEventSourceMapping` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html [2]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
482 483 484 485 |
# File 'lib/aws-sdk-lambda/client.rb', line 482 def create_event_source_mapping(params = {}, = {}) req = build_request(:create_event_source_mapping, params) req.send_request() end |
#create_function(params = {}) ⇒ Types::FunctionConfiguration
Creates a new Lambda function. The function metadata is created from the request parameters, and the code for the function is provided by a .zip file in the request body. If the function name already exists, the operation will fail. Note that the function name is case-sensitive.
If you are using versioning, you can also publish a version of the Lambda function you are creating using the ‘Publish` parameter. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:CreateFunction` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
732 733 734 735 |
# File 'lib/aws-sdk-lambda/client.rb', line 732 def create_function(params = {}, = {}) req = build_request(:create_function, params) req.send_request() end |
#delete_alias(params = {}) ⇒ Struct
Deletes the specified Lambda function alias. For more information, see [Introduction to AWS Lambda Aliases].
This requires permission for the lambda:DeleteAlias action.
[1]: docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
779 780 781 782 |
# File 'lib/aws-sdk-lambda/client.rb', line 779 def delete_alias(params = {}, = {}) req = build_request(:delete_alias, params) req.send_request() end |
#delete_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Removes an event source mapping. This means AWS Lambda will no longer invoke the function for events in the associated source.
This operation requires permission for the ‘lambda:DeleteEventSourceMapping` action.
846 847 848 849 |
# File 'lib/aws-sdk-lambda/client.rb', line 846 def delete_event_source_mapping(params = {}, = {}) req = build_request(:delete_event_source_mapping, params) req.send_request() end |
#delete_function(params = {}) ⇒ Struct
Deletes the specified Lambda function code and configuration.
If you are using the versioning feature and you don’t specify a function version in your ‘DeleteFunction` request, AWS Lambda will delete the function, including all its versions, and any aliases pointing to the function versions. To delete a specific function version, you must provide the function version via the `Qualifier` parameter. For information about function versioning, see [AWS Lambda Function Versioning and Aliases].
When you delete a function the associated resource policy is also deleted. You will need to delete the event source mappings explicitly.
This operation requires permission for the ‘lambda:DeleteFunction` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
923 924 925 926 |
# File 'lib/aws-sdk-lambda/client.rb', line 923 def delete_function(params = {}, = {}) req = build_request(:delete_function, params) req.send_request() end |
#get_account_settings(params = {}) ⇒ Types::GetAccountSettingsResponse
Returns a customer’s account settings.
You can use this operation to retrieve Lambda limits information, such as code size and concurrency limits. For more information about limits, see [AWS Lambda Limits]. You can also retrieve resource usage statistics, such as code storage usage and function count.
973 974 975 976 |
# File 'lib/aws-sdk-lambda/client.rb', line 973 def get_account_settings(params = {}, = {}) req = build_request(:get_account_settings, params) req.send_request() end |
#get_alias(params = {}) ⇒ Types::AliasConfiguration
Returns the specified alias information such as the alias ARN, description, and function version it is pointing to. For more information, see [Introduction to AWS Lambda Aliases].
This requires permission for the ‘lambda:GetAlias` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
1041 1042 1043 1044 |
# File 'lib/aws-sdk-lambda/client.rb', line 1041 def get_alias(params = {}, = {}) req = build_request(:get_alias, params) req.send_request() end |
#get_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
Returns configuration information for the specified event source mapping (see CreateEventSourceMapping).
This operation requires permission for the ‘lambda:GetEventSourceMapping` action.
1108 1109 1110 1111 |
# File 'lib/aws-sdk-lambda/client.rb', line 1108 def get_event_source_mapping(params = {}, = {}) req = build_request(:get_event_source_mapping, params) req.send_request() end |
#get_function(params = {}) ⇒ Types::GetFunctionResponse
Returns the configuration information of the Lambda function and a presigned URL link to the .zip file you uploaded with CreateFunction so you can download the .zip file. Note that the URL is valid for up to 10 minutes. The configuration information is the same information you provided as parameters when uploading the function.
Using the optional ‘Qualifier` parameter, you can specify a specific function version for which you want this information. If you don’t specify this parameter, the API uses unqualified function ARN which return information about the ‘$LATEST` version of the Lambda function. For more information, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:GetFunction` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1246 1247 1248 1249 |
# File 'lib/aws-sdk-lambda/client.rb', line 1246 def get_function(params = {}, = {}) req = build_request(:get_function, params) req.send_request() end |
#get_function_configuration(params = {}) ⇒ Types::FunctionConfiguration
Returns the configuration information of the Lambda function. This the same information you provided as parameters when uploading the function by using CreateFunction.
If you are using the versioning feature, you can retrieve this information for a specific function version by using the optional ‘Qualifier` parameter and specifying the function version or alias that points to it. If you don’t provide it, the API returns information about the $LATEST version of the function. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:GetFunctionConfiguration` operation.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1387 1388 1389 1390 |
# File 'lib/aws-sdk-lambda/client.rb', line 1387 def get_function_configuration(params = {}, = {}) req = build_request(:get_function_configuration, params) req.send_request() end |
#get_policy(params = {}) ⇒ Types::GetPolicyResponse
Returns the resource policy associated with the specified Lambda function.
If you are using the versioning feature, you can get the resource policy associated with the specific Lambda function version or alias by specifying the version or alias name using the ‘Qualifier` parameter. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
You need permission for the ‘lambda:GetPolicy action.`
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1461 1462 1463 1464 |
# File 'lib/aws-sdk-lambda/client.rb', line 1461 def get_policy(params = {}, = {}) req = build_request(:get_policy, params) req.send_request() end |
#invoke(params = {}) ⇒ Types::InvocationResponse
Invokes a specific Lambda function. For an example, see [Create the Lambda Function and Test It Manually].
If you are using the versioning feature, you can invoke the specific function version by providing function version or alias name that is pointing to the function version using the ‘Qualifier` parameter in the request. If you don’t provide the ‘Qualifier` parameter, the `$LATEST` version of the Lambda function is invoked. Invocations occur at least once in response to an event and functions must be idempotent to handle this. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:InvokeFunction` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/with-dynamodb-create-function.html#with-dbb-invoke-manually [2]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1592 1593 1594 1595 |
# File 'lib/aws-sdk-lambda/client.rb', line 1592 def invoke(params = {}, = {}) req = build_request(:invoke, params) req.send_request() end |
#invoke_async(params = {}) ⇒ Types::InvokeAsyncResponse
This API is deprecated. We recommend you use ‘Invoke` API (see Invoke).
Submits an invocation request to AWS Lambda. Upon receiving the request, Lambda executes the specified function asynchronously. To see the logs generated by the Lambda function execution, see the CloudWatch Logs console.
This operation requires permission for the ‘lambda:InvokeFunction` action.
1650 1651 1652 1653 |
# File 'lib/aws-sdk-lambda/client.rb', line 1650 def invoke_async(params = {}, = {}) req = build_request(:invoke_async, params) req.send_request() end |
#list_aliases(params = {}) ⇒ Types::ListAliasesResponse
Returns list of aliases created for a Lambda function. For each alias, the response includes information such as the alias ARN, description, alias name, and the function version to which it points. For more information, see [Introduction to AWS Lambda Aliases].
This requires permission for the lambda:ListAliases action.
[1]: docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
1732 1733 1734 1735 |
# File 'lib/aws-sdk-lambda/client.rb', line 1732 def list_aliases(params = {}, = {}) req = build_request(:list_aliases, params) req.send_request() end |
#list_event_source_mappings(params = {}) ⇒ Types::ListEventSourceMappingsResponse
Returns a list of event source mappings you created using the ‘CreateEventSourceMapping` (see CreateEventSourceMapping).
For each mapping, the API returns configuration information. You can optionally specify filters to retrieve specific event source mappings.
If you are using the versioning feature, you can get list of event source mappings for a specific Lambda function version or an alias as described in the ‘FunctionName` parameter. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:ListEventSourceMappings` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1813 1814 1815 1816 |
# File 'lib/aws-sdk-lambda/client.rb', line 1813 def list_event_source_mappings(params = {}, = {}) req = build_request(:list_event_source_mappings, params) req.send_request() end |
#list_functions(params = {}) ⇒ Types::ListFunctionsResponse
Returns a list of your Lambda functions. For each function, the response includes the function configuration information. You must use GetFunction to retrieve the code for your function.
This operation requires permission for the ‘lambda:ListFunctions` action.
If you are using the versioning feature, you can list all of your functions or only ‘$LATEST` versions. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
1930 1931 1932 1933 |
# File 'lib/aws-sdk-lambda/client.rb', line 1930 def list_functions(params = {}, = {}) req = build_request(:list_functions, params) req.send_request() end |
#list_tags(params = {}) ⇒ Types::ListTagsResponse
Returns a list of tags assigned to a function when supplied the function ARN (Amazon Resource Name).
1960 1961 1962 1963 |
# File 'lib/aws-sdk-lambda/client.rb', line 1960 def (params = {}, = {}) req = build_request(:list_tags, params) req.send_request() end |
#list_versions_by_function(params = {}) ⇒ Types::ListVersionsByFunctionResponse
List all versions of a function. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2057 2058 2059 2060 |
# File 'lib/aws-sdk-lambda/client.rb', line 2057 def list_versions_by_function(params = {}, = {}) req = build_request(:list_versions_by_function, params) req.send_request() end |
#publish_version(params = {}) ⇒ Types::FunctionConfiguration
Publishes a version of your function from the current snapshot of $LATEST. That is, AWS Lambda takes a snapshot of the function code and configuration information from $LATEST and publishes a new version. The code and configuration cannot be modified after publication. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2183 2184 2185 2186 |
# File 'lib/aws-sdk-lambda/client.rb', line 2183 def publish_version(params = {}, = {}) req = build_request(:publish_version, params) req.send_request() end |
#remove_permission(params = {}) ⇒ Struct
You can remove individual permissions from an resource policy associated with a Lambda function by providing a statement ID that you provided when you added the permission.
If you are using versioning, the permissions you remove are specific to the Lambda function version or alias you specify in the ‘AddPermission` request via the `Qualifier` parameter. For more information about versioning, see [AWS Lambda Function Versioning and Aliases].
Note that removal of a permission will cause an active event source to lose permission to the function.
You need permission for the ‘lambda:RemovePermission` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2253 2254 2255 2256 |
# File 'lib/aws-sdk-lambda/client.rb', line 2253 def (params = {}, = {}) req = build_request(:remove_permission, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Creates a list of tags (key-value pairs) on the Lambda function. Requires the Lambda function ARN (Amazon Resource Name). If a key is specified without a value, Lambda creates a tag with the specified key and a value of null.
2285 2286 2287 2288 |
# File 'lib/aws-sdk-lambda/client.rb', line 2285 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes tags from a Lambda function. Requires the function ARN (Amazon Resource Name).
2312 2313 2314 2315 |
# File 'lib/aws-sdk-lambda/client.rb', line 2312 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_alias(params = {}) ⇒ Types::AliasConfiguration
Using this API you can update the function version to which the alias points and the alias description. For more information, see [Introduction to AWS Lambda Aliases].
This requires permission for the lambda:UpdateAlias action.
[1]: docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
2389 2390 2391 2392 |
# File 'lib/aws-sdk-lambda/client.rb', line 2389 def update_alias(params = {}, = {}) req = build_request(:update_alias, params) req.send_request() end |
#update_event_source_mapping(params = {}) ⇒ Types::EventSourceMappingConfiguration
You can update an event source mapping. This is useful if you want to change the parameters of the existing mapping without losing your position in the stream. You can change which function will receive the stream records, but to change the stream itself, you must create a new mapping.
If you are using the versioning feature, you can update the event source mapping to map to a specific Lambda function version or alias as described in the ‘FunctionName` parameter. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
If you disable the event source mapping, AWS Lambda stops polling. If you enable again, it will resume polling from the time it had stopped polling, so you don’t lose processing of any records. However, if you delete event source mapping and create it again, it will reset.
This operation requires permission for the ‘lambda:UpdateEventSourceMapping` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2512 2513 2514 2515 |
# File 'lib/aws-sdk-lambda/client.rb', line 2512 def update_event_source_mapping(params = {}, = {}) req = build_request(:update_event_source_mapping, params) req.send_request() end |
#update_function_code(params = {}) ⇒ Types::FunctionConfiguration
Updates the code for the specified Lambda function. This operation must only be used on an existing Lambda function and cannot be used to update the function configuration.
If you are using the versioning feature, note this API will always update the $LATEST version of your Lambda function. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:UpdateFunctionCode` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2678 2679 2680 2681 |
# File 'lib/aws-sdk-lambda/client.rb', line 2678 def update_function_code(params = {}, = {}) req = build_request(:update_function_code, params) req.send_request() end |
#update_function_configuration(params = {}) ⇒ Types::FunctionConfiguration
Updates the configuration parameters for the specified Lambda function by using the values provided in the request. You provide only the parameters you want to change. This operation must only be used on an existing Lambda function and cannot be used to update the function’s code.
If you are using the versioning feature, note this API will always update the $LATEST version of your Lambda function. For information about the versioning feature, see [AWS Lambda Function Versioning and Aliases].
This operation requires permission for the ‘lambda:UpdateFunctionConfiguration` action.
[1]: docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
2897 2898 2899 2900 |
# File 'lib/aws-sdk-lambda/client.rb', line 2897 def update_function_configuration(params = {}, = {}) req = build_request(:update_function_configuration, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2921 2922 2923 |
# File 'lib/aws-sdk-lambda/client.rb', line 2921 def waiter_names [] end |