Long totalCodeSize
The amount of storage space that you can use for all deployment packages and layer archives.
Long codeSizeUnzipped
The maximum size of your function's code and layers when they're extracted.
Long codeSizeZipped
The maximum size of a deployment package when it's uploaded directly to AWS Lambda. Use Amazon S3 for larger files.
Integer concurrentExecutions
The maximum number of simultaneous function executions.
Integer unreservedConcurrentExecutions
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
String layerName
The name or Amazon Resource Name (ARN) of the layer.
Long versionNumber
The version number.
String statementId
An identifier that distinguishes the policy from others on the same layer version.
String action
The API action that grants access to the layer. For example, lambda:GetLayerVersion
.
String principal
An account ID, or *
to grant permission to all AWS accounts.
String organizationId
With the principal set to *
, grant permission to all accounts in the specified organization.
String revisionId
Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String statementId
A statement identifier that differentiates the statement from others in the same policy.
String action
The action that the principal can use on the function. For example, lambda:InvokeFunction
or
lambda:GetFunction
.
String principal
The AWS service or account that invokes the function. If you specify a service, use SourceArn
or
SourceAccount
to limit who can invoke the function through that service.
String sourceArn
For AWS services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
String sourceAccount
For AWS services, the ID of the account that owns the resource. Use this instead of SourceArn
to
grant permission to resources that are owned by another account (for example, all of an account's Amazon S3
buckets). Or use it together with SourceArn
to ensure that the resource is owned by the specified
account. For example, an Amazon S3 bucket could be deleted by its owner and recreated by another account.
String eventSourceToken
For Alexa Smart Home functions, a token that must be supplied by the invoker.
String qualifier
Specify a version or alias to add permissions to a published version of the function.
String revisionId
Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it.
String statement
The permission statement that's added to the function policy.
String aliasArn
The Amazon Resource Name (ARN) of the alias.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String revisionId
A unique identifier that changes when you update the alias.
SdkInternalMap<K,V> additionalVersionWeights
The name of the second alias, and the percentage of traffic that's routed to it.
String type
The exception type.
Integer reservedConcurrentExecutions
The number of concurrent executions that are reserved for this function. For more information, see Managing Concurrency.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String aliasArn
The Amazon Resource Name (ARN) of the alias.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String revisionId
A unique identifier that changes when you update the alias.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
Amazon Kinesis - The ARN of the data stream or a stream consumer.
Amazon DynamoDB Streams - The ARN of the stream.
Amazon Simple Queue Service - The ARN of the queue.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
Boolean enabled
Disables the event source mapping to pause polling and invocation.
Integer batchSize
The maximum number of items to retrieve in a single batch.
Amazon Kinesis - Default 100. Max 10,000.
Amazon DynamoDB Streams - Default 100. Max 1,000.
Amazon Simple Queue Service - Default 10. Max 10.
String startingPosition
The position in a stream from which to start reading. Required for Amazon Kinesis and Amazon DynamoDB Streams
sources. AT_TIMESTAMP
is only supported for Amazon Kinesis streams.
Date startingPositionTimestamp
With StartingPosition
set to AT_TIMESTAMP
, the time from which to start reading.
String uUID
The identifier of the event source mapping.
Integer batchSize
The maximum number of items to retrieve in a single batch.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
String functionArn
The ARN of the Lambda function.
Date lastModified
The date that the event source mapping was last updated.
String lastProcessingResult
The result of the last AWS Lambda invocation of your Lambda function.
String state
The state of the event source mapping. It can be one of the following: Creating
,
Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
String stateTransitionReason
The cause of the last state change, either User initiated
or Lambda initiated
.
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String runtime
The identifier of the function's runtime.
String role
The Amazon Resource Name (ARN) of the function's execution role.
String handler
The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model.
FunctionCode code
The code for the function.
String description
A description of the function.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds.
Integer memorySize
The amount of memory that your function has access to. Increasing the function's memory also increases its CPU allocation. The default value is 128 MB. The value must be a multiple of 64 MB.
Boolean publish
Set to true to publish the first version of the function during creation.
VpcConfig vpcConfig
For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings.
DeadLetterConfig deadLetterConfig
A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues.
Environment environment
Environment variables that are accessible from function code during execution.
String kMSKeyArn
The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key.
TracingConfig tracingConfig
Set Mode
to Active
to sample and trace a subset of incoming requests with AWS X-Ray.
SdkInternalMap<K,V> tags
A list of tags to apply to the function.
SdkInternalList<T> layers
A list of function layers to add to the function's execution environment. Specify each layer by its ARN, including the version.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
String targetArn
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String name
The name of the alias.
String uUID
The identifier of the event source mapping.
String uUID
The identifier of the event source mapping.
Integer batchSize
The maximum number of items to retrieve in a single batch.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
String functionArn
The ARN of the Lambda function.
Date lastModified
The date that the event source mapping was last updated.
String lastProcessingResult
The result of the last AWS Lambda invocation of your Lambda function.
String state
The state of the event source mapping. It can be one of the following: Creating
,
Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
String stateTransitionReason
The cause of the last state change, either User initiated
or Lambda initiated
.
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String functionName
The name of the Lambda function or version.
Name formats
Function name - my-function
(name-only), my-function:1
(with version).
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String qualifier
Specify a version to delete. You can't delete a version that's referenced by an alias.
String type
String type
String type
SdkInternalMap<K,V> variables
Environment variable key-value pairs.
SdkInternalMap<K,V> variables
Environment variable key-value pairs.
EnvironmentError error
Error messages for environment variables that couldn't be applied.
String uUID
The identifier of the event source mapping.
Integer batchSize
The maximum number of items to retrieve in a single batch.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
String functionArn
The ARN of the Lambda function.
Date lastModified
The date that the event source mapping was last updated.
String lastProcessingResult
The result of the last AWS Lambda invocation of your Lambda function.
String state
The state of the event source mapping. It can be one of the following: Creating
,
Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
String stateTransitionReason
The cause of the last state change, either User initiated
or Lambda initiated
.
ByteBuffer zipFile
The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.
String s3Bucket
An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.
String s3Key
The Amazon S3 key of the deployment package.
String s3ObjectVersion
For versioned objects, the version of the deployment package object to use.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
AccountLimit accountLimit
Limits that are related to concurrency and code storage.
AccountUsage accountUsage
The number of functions and amount of storage in use.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String name
The name of the alias.
String aliasArn
The Amazon Resource Name (ARN) of the alias.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String revisionId
A unique identifier that changes when you update the alias.
String uUID
The identifier of the event source mapping.
String uUID
The identifier of the event source mapping.
Integer batchSize
The maximum number of items to retrieve in a single batch.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
String functionArn
The ARN of the Lambda function.
Date lastModified
The date that the event source mapping was last updated.
String lastProcessingResult
The result of the last AWS Lambda invocation of your Lambda function.
String state
The state of the event source mapping. It can be one of the following: Creating
,
Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
String stateTransitionReason
The cause of the last state change, either User initiated
or Lambda initiated
.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String qualifier
Specify a version or alias to get details about a published version of the function.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String qualifier
Specify a version or alias to get details about a published version of the function.
FunctionConfiguration configuration
The configuration of the function or version.
FunctionCodeLocation code
The deployment package of the function or version.
SdkInternalMap<K,V> tags
The function's tags.
Concurrency concurrency
The function's reserved concurrency.
LayerVersionContentOutput content
Details about the layer version.
String layerArn
The ARN of the layer.
String layerVersionArn
The ARN of the layer version.
String description
The description of the version.
String createdDate
The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
Long version
The version number.
SdkInternalList<T> compatibleRuntimes
The layer's compatible runtimes.
String licenseInfo
The layer's software license.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String qualifier
Specify a version or alias to get the policy for that resource.
String type
The exception type.
String type
The exception type.
String type
String type
String type
String type
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
InputStream invokeArgs
The JSON that you want to provide to your Lambda function as input.
Integer status
The status code.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String invocationType
Choose from the following options.
RequestResponse
(default) - Invoke the function synchronously. Keep the connection open until the
function returns a response or times out. The API response includes the function response and additional data.
Event
- Invoke the function asynchronously. Send events that fail multiple times to the function's
dead-letter queue (if it's configured). The API response only includes a status code.
DryRun
- Validate parameter values and verify that the user or role has permission to invoke the
function.
String logType
Set to Tail
to include the execution log in the response.
String clientContext
Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.
ByteBuffer payload
The JSON that you want to provide to your Lambda function as input.
String qualifier
Specify a version or alias to invoke a published version of the function.
Integer statusCode
The HTTP status code is in the 200 range for a successful request. For the RequestResponse
invocation type, this status code is 200. For the Event
invocation type, this status code is 202.
For the DryRun
invocation type, the status code is 204.
String functionError
If present, indicates that an error occurred during function execution. Details about the error are included in the response payload.
Handled
- The runtime caught an error thrown by the function and formatted it into a JSON document.
Unhandled
- The runtime didn't handle the error. For example, the function ran out of memory or
timed out.
String logResult
The last 4 KB of the execution log, which is base64 encoded.
ByteBuffer payload
The response from the function, or an error object.
String executedVersion
The version of the function that executed. When you invoke a function with an alias, this indicates which version the alias resolved to.
String type
String type
String type
String type
String layerName
The name of the layer.
String layerArn
The Amazon Resource Name (ARN) of the function layer.
LayerVersionsListItem latestMatchingVersion
The newest version of the layer.
String s3Bucket
The Amazon S3 bucket of the layer archive.
String s3Key
The Amazon S3 key of the layer archive.
String s3ObjectVersion
For versioned objects, the version of the layer archive object to use.
ByteBuffer zipFile
The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle the encoding for you.
String layerVersionArn
The ARN of the layer version.
Long version
The version number.
String description
The description of the version.
String createdDate
The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000
.
SdkInternalList<T> compatibleRuntimes
The layer's compatible runtimes.
String licenseInfo
The layer's open-source license.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String functionVersion
Specify a function version to only list aliases that invoke that version.
String marker
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
Integer maxItems
Limit the number of aliases returned.
String nextMarker
The pagination token that's included if more results are available.
SdkInternalList<T> aliases
A list of aliases.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
Amazon Kinesis - The ARN of the data stream or a stream consumer.
Amazon DynamoDB Streams - The ARN of the stream.
Amazon Simple Queue Service - The ARN of the queue.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
String marker
A pagination token returned by a previous call.
Integer maxItems
The maximum number of event source mappings to return.
String nextMarker
A pagination token that's returned when the response doesn't contain all event source mappings.
SdkInternalList<T> eventSourceMappings
A list of event source mappings.
String masterRegion
For Lambda@Edge functions, the AWS Region of the master function. For example, us-east-2
or
ALL
. If specified, you must set FunctionVersion
to ALL
.
String functionVersion
Set to ALL
to include entries for all published versions of each function.
String marker
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
Integer maxItems
Specify a value between 1 and 50 to limit the number of functions in the response.
String nextMarker
The pagination token that's included if more results are available.
SdkInternalList<T> functions
A list of Lambda functions.
String nextMarker
A pagination token returned when the response doesn't contain all layers.
SdkInternalList<T> layers
A list of function layers.
String compatibleRuntime
A runtime identifier. For example, go1.x
.
String layerName
The name or Amazon Resource Name (ARN) of the layer.
String marker
A pagination token returned by a previous call.
Integer maxItems
The maximum number of versions to return.
String nextMarker
A pagination token returned when the response doesn't contain all versions.
SdkInternalList<T> layerVersions
A list of versions.
String resource
The function's Amazon Resource Name (ARN).
SdkInternalMap<K,V> tags
The function's tags.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String marker
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
Integer maxItems
Limit the number of versions that are returned.
String nextMarker
The pagination token that's included if more results are available.
SdkInternalList<T> versions
A list of Lambda function versions.
String type
String type
The exception type.
String layerName
The name or Amazon Resource Name (ARN) of the layer.
String description
The description of the version.
LayerVersionContentInput content
The function layer archive.
SdkInternalList<T> compatibleRuntimes
A list of compatible function runtimes. Used for filtering with ListLayers and ListLayerVersions.
String licenseInfo
The layer's software license. It can be any of the following:
An SPDX license identifier. For example, MIT
.
The URL of a license hosted on the internet. For example, https://opensource.org/licenses/MIT
.
The full text of the license.
LayerVersionContentOutput content
Details about the layer version.
String layerArn
The ARN of the layer.
String layerVersionArn
The ARN of the layer version.
String description
The description of the version.
String createdDate
The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
Long version
The version number.
SdkInternalList<T> compatibleRuntimes
The layer's compatible runtimes.
String licenseInfo
The layer's software license.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String codeSha256
Only publish a version if the hash value matches the value that's specified. Use this option to avoid publishing a version if the function code has changed since you last updated it. You can get the hash for the version that you uploaded from the output of UpdateFunctionCode.
String description
A description for the version to override the description in the function configuration.
String revisionId
Only update the function if the revision ID matches the ID that's specified. Use this option to avoid publishing a version if the function configuration has changed since you last updated it.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Integer reservedConcurrentExecutions
The number of simultaneous executions to reserve for the function.
Integer reservedConcurrentExecutions
The number of concurrent executions that are reserved for this function. For more information, see Managing Concurrency.
String layerName
The name or Amazon Resource Name (ARN) of the layer.
Long versionNumber
The version number.
String statementId
The identifier that was specified when the statement was added.
String revisionId
Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
String functionName
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. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String statementId
Statement ID of the permission to remove.
String qualifier
Specify a version or alias to remove permissions from a published version of the function.
String revisionId
Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it.
String type
String type
The exception type.
String type
String type
String type
String type
String resource
The function's Amazon Resource Name (ARN).
SdkInternalMap<K,V> tags
A list of tags to apply to the function.
String mode
The tracing mode.
String mode
The tracing mode.
String type
String resource
The function's Amazon Resource Name (ARN).
SdkInternalList<T> tagKeys
A list of tag keys to remove from the function.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String revisionId
Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying an alias that has changed since you last read it.
String aliasArn
The Amazon Resource Name (ARN) of the alias.
String name
The name of the alias.
String functionVersion
The function version that the alias invokes.
String description
A description of the alias.
AliasRoutingConfiguration routingConfig
The routing configuration of the alias.
String revisionId
A unique identifier that changes when you update the alias.
String uUID
The identifier of the event source mapping.
String functionName
The name of the Lambda function.
Name formats
Function name - MyFunction
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.
Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD
.
Partial ARN - 123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
Boolean enabled
Disables the event source mapping to pause polling and invocation.
Integer batchSize
The maximum number of items to retrieve in a single batch.
Amazon Kinesis - Default 100. Max 10,000.
Amazon DynamoDB Streams - Default 100. Max 1,000.
Amazon Simple Queue Service - Default 10. Max 10.
String uUID
The identifier of the event source mapping.
Integer batchSize
The maximum number of items to retrieve in a single batch.
String eventSourceArn
The Amazon Resource Name (ARN) of the event source.
String functionArn
The ARN of the Lambda function.
Date lastModified
The date that the event source mapping was last updated.
String lastProcessingResult
The result of the last AWS Lambda invocation of your Lambda function.
String state
The state of the event source mapping. It can be one of the following: Creating
,
Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
String stateTransitionReason
The cause of the last state change, either User initiated
or Lambda initiated
.
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
ByteBuffer zipFile
The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.
String s3Bucket
An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.
String s3Key
The Amazon S3 key of the deployment package.
String s3ObjectVersion
For versioned objects, the version of the deployment package object to use.
Boolean publish
Set to true to publish a new version of the function after updating the code. This has the same effect as calling PublishVersion separately.
Boolean dryRun
Set to true to validate the request parameters and access permissions without modifying the function code.
String revisionId
Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a function that has changed since you last read it.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
String functionName
The name of the Lambda function.
Name formats
Function name - my-function
.
Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function
.
Partial ARN - 123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
String role
The Amazon Resource Name (ARN) of the function's execution role.
String handler
The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model.
String description
A description of the function.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds.
Integer memorySize
The amount of memory that your function has access to. Increasing the function's memory also increases its CPU allocation. The default value is 128 MB. The value must be a multiple of 64 MB.
VpcConfig vpcConfig
For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings.
Environment environment
Environment variables that are accessible from function code during execution.
String runtime
The identifier of the function's runtime.
DeadLetterConfig deadLetterConfig
A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues.
String kMSKeyArn
The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key.
TracingConfig tracingConfig
Set Mode
to Active
to sample and trace a subset of incoming requests with AWS X-Ray.
String revisionId
Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a function that has changed since you last read it.
SdkInternalList<T> layers
A list of function layers to add to the function's execution environment. Specify each layer by its ARN, including the version.
String functionName
The name of the function.
String functionArn
The function's Amazon Resource Name (ARN).
String runtime
The runtime environment for the Lambda function.
String role
The function's execution role.
String handler
The function that Lambda calls to begin executing your function.
Long codeSize
The size of the function's deployment package, in bytes.
String description
The function's description.
Integer timeout
The amount of time that Lambda allows a function to run before stopping it.
Integer memorySize
The memory that's allocated to the function.
String lastModified
The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
String codeSha256
The SHA256 hash of the function's deployment package.
String version
The version of the Lambda function.
VpcConfigResponse vpcConfig
The function's networking configuration.
DeadLetterConfig deadLetterConfig
The function's dead letter queue.
EnvironmentResponse environment
The function's environment variables.
String kMSKeyArn
The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.
TracingConfigResponse tracingConfig
The function's AWS X-Ray tracing configuration.
String masterArn
For Lambda@Edge functions, the ARN of the master function.
String revisionId
The latest updated revision of the function or alias.
SdkInternalList<T> layers
The function's layers.
SdkInternalList<T> subnetIds
A list of VPC subnet IDs.
SdkInternalList<T> securityGroupIds
A list of VPC security groups IDs.
SdkInternalList<T> subnetIds
A list of VPC subnet IDs.
SdkInternalList<T> securityGroupIds
A list of VPC security groups IDs.
String vpcId
The ID of the VPC.
Copyright © 2019. All rights reserved.