AwsLambdaApi
Attributes
- Graph
-
- Supertypes
- Self type
-
AwsLambdaApi.type
Members list
Value members
Concrete methods
Creates a Lambda function
Creates a Lambda function
Attributes
Returns a list of aliases for a Lambda function.
Returns a list of aliases for a Lambda function.
Attributes
Returns the deployment package of the function or version.
Returns the deployment package of the function or version.
Attributes
Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.
Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.
Value parameters
- name
-
The name of the Lambda function, version, or alias. Name formats:
- Function name – my-function (name-only), my-function:v1 (with alias).
- Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function.
- Partial ARN – 123456789012:function:my-function. You can append a version number or alias to any of the formats.
Attributes
- Returns
-
The configuration of the function or version.
Returns a function's environment variables.
Returns a function's environment variables.
Attributes
Returns a list of versions, with the version-specific configuration of each. Lambda returns up to 50 versions per call.
Returns a list of versions, with the version-specific configuration of each. Lambda returns up to 50 versions per call.
Attributes
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. By default, Lambda invokes your function synchronously (i.e. theInvocationType is RequestResponse). To invoke a function asynchronously, set InvocationType to Event. Lambda passes the ClientContext object to your function for synchronous invocations only.
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. By default, Lambda invokes your function synchronously (i.e. theInvocationType is RequestResponse). To invoke a function asynchronously, set InvocationType to Event. Lambda passes the ClientContext object to your function for synchronous invocations only.
Attributes
Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.
Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.
Attributes
Returns a function's tags.
Returns a function's tags.
Attributes
Creates a version from the current code and configuration of a function.
Creates a version from the current code and configuration of a function.
Attributes
Add tags to lambda.
Add tags to lambda.
Attributes
Updates the configuration of a Lambda function alias.
Updates the configuration of a Lambda function alias.
Attributes
Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher.
Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher.
Attributes
Modify the version-specific settings of a Lambda function.
Modify the version-specific settings of a Lambda function.
When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it.