{ "version": "2.0", "service": "AWS Lambda

Overview

This is the AWS Lambda API Reference. The AWS Lambda Developer Guide provides additional information. For the service overview, see What is AWS Lambda, and for information about how the service works, see AWS Lambda: How it Works in the AWS Lambda Developer Guide.

", "operations": { "AddLayerVersionPermission": "

Adds permissions to the resource-based policy of a version of an AWS Lambda layer. Use this action to grant layer usage permission to other accounts. You can grant permission to a single account, all AWS accounts, or all accounts in an organization.

To revoke permission, call RemoveLayerVersionPermission with the statement ID that you specified when you added it.

", "AddPermission": "

Grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.

To grant permission to another account, specify the account ID as the Principal. For AWS services, the principal is a domain-style identifier defined by the service, like s3.amazonaws.com or sns.amazonaws.com. For AWS services, you can also specify the ARN or owning account of the associated resource as the SourceArn or SourceAccount. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.

This action adds a statement to a resource-based permission policy for the function. For more information about function policies, see Lambda Function Policies.

", "CreateAlias": "

Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version.

You can also map an alias to split invocation requests between two versions. Use the RoutingConfig parameter to specify a second version and the percentage of invocation requests that it receives.

", "CreateEventSourceMapping": "

Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function.

For details about each event source type, see the following topics.

", "CreateFunction": "

Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package contains your function code. The execution role grants the function permission to use AWS services such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing.

A function has an unpublished version, and can have published versions and aliases. A published version is a snapshot of your function code and configuration that can not be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration.

The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency).

If another account or a AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias.

To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.

", "DeleteAlias": "

Deletes a Lambda function alias.

", "DeleteEventSourceMapping": "

Deletes an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings.

", "DeleteFunction": "

Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted.

To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For AWS services and resources that invoke your function directly, delete the trigger in the service where you originally configured it.

", "DeleteFunctionConcurrency": "

Removes a concurrent execution limit from a function.

", "DeleteLayerVersion": "

Deletes a version of an AWS Lambda layer. Deleted versions can no longer be viewed or added to functions. To avoid breaking functions, a copy of the version remains in Lambda until no functions refer to it.

", "GetAccountSettings": "

Retrieves details about your account's limits and usage in a region.

", "GetAlias": "

Returns details about a Lambda function alias.

", "GetEventSourceMapping": "

Returns details about an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings.

", "GetFunction": "

Returns information about 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 specific to that version are returned.

", "GetFunctionConfiguration": "

Returns a the version-specific settings of a Lambda function or version. The output includes only options that can vary between versions of a function. To modify these settings, use UpdateFunctionConfiguration.

To get all of a function's details, including function-level settings, use GetFunction.

", "GetLayerVersion": "

Returns information about a version of an AWS Lambda layer, with a link to download the layer archive that's valid for 10 minutes.

", "GetLayerVersionPolicy": "

Returns the permission policy for a version of an AWS Lambda layer. For more information, see AddLayerVersionPermission.

", "GetPolicy": "

Returns the resource-based IAM policy for a function, version, or alias.

", "Invoke": "

Invokes a Lambda function. You can invoke a function synchronously and wait for the response, or asynchronously. To invoke a function asynchronously, set InvocationType to Event.

For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace. To record function errors for asynchronous invocations, configure your function with a dead letter queue.

The status code in the API response does not reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, limit errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException if executing the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded) or function level (ReservedFunctionConcurrentInvocationLimitExceeded).

For functions with a long timeout, your client may be disconnected during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings.

This operation requires permission for the lambda:InvokeFunction action.

", "InvokeAsync": "

For asynchronous function invocation, use Invoke.

Invokes a function asynchronously.

", "ListAliases": "

Returns a list of aliases for a Lambda function.

", "ListEventSourceMappings": "

Lists event source mappings. Specify an EventSourceArn to only show event source mappings for a single event source.

", "ListFunctions": "

Returns a list of Lambda functions, with the version-specific configuration of each.

Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. To get more information about a function or version, use GetFunction.

", "ListLayerVersions": "

Lists the versions of an AWS Lambda layer. Versions that have been deleted aren't listed. Specify a runtime identifier to list only versions that indicate that they're compatible with that runtime.

", "ListLayers": "

Lists AWS Lambda layers and shows information about the latest version of each. Specify a runtime identifier to list only layers that indicate that they're compatible with that runtime.

", "ListTags": "

Returns a function's tags. You can also view tags with GetFunction.

", "ListVersionsByFunction": "

Returns a list of versions, with the version-specific configuration of each.

", "PublishLayerVersion": "

Creates an AWS Lambda layer from a ZIP archive. Each time you call PublishLayerVersion with the same version name, a new version is created.

Add layers to your function with CreateFunction or UpdateFunctionConfiguration.

", "PublishVersion": "

Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that doesn't change.

AWS Lambda does not publish a version if the function's configuration and code hasn't changed since the last version. Use UpdateFunctionCode or UpdateFunctionConfiguration to update the function prior to publishing a version.

Clients can invoke versions directly or with an alias. To create an alias, use CreateAlias.

", "PutFunctionConcurrency": "

Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level.

Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both guarantees that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function.

Use GetAccountSettings to see your regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.

", "RemoveLayerVersionPermission": "

Removes a statement from the permissions policy for a version of an AWS Lambda layer. For more information, see AddLayerVersionPermission.

", "RemovePermission": "

Revokes function use permission from an AWS service or another account. You can get the ID of the statement from the output of GetPolicy.

", "TagResource": "

Adds tags to a function.

", "UntagResource": "

Removes tags from a function.

", "UpdateAlias": "

Updates the configuration of a Lambda function alias.

", "UpdateEventSourceMapping": "

Updates an event source mapping. You can change the function that AWS Lambda invokes, or pause invocation and resume later from the same location.

", "UpdateFunctionCode": "

Updates a Lambda function's code.

The function's code is locked when you publish a version. You cannot modify the code of a published version, only the unpublished version.

", "UpdateFunctionConfiguration": "

Modify the version-specifc settings of a Lambda function.

These settings can vary between versions of a function and are locked when you publish a version. You cannot modify the configuration of a published version, only the unpublished version.

To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an account or AWS service, use AddPermission.

" }, "shapes": { "AccountLimit": { "base": "

Limits related to concurrency and code storage. All file and storage sizes are in bytes.

", "refs": { "GetAccountSettingsResponse$AccountLimit": "

Limits related to concurrency and code storage.

" } }, "AccountUsage": { "base": "

The number of functions and amount of storage in use.

", "refs": { "GetAccountSettingsResponse$AccountUsage": "

The number of functions and amount of storage in use.

" } }, "Action": { "base": null, "refs": { "AddPermissionRequest$Action": "

The action that the principal can use on the function. For example, lambda:InvokeFunction or lambda:GetFunction.

" } }, "AddLayerVersionPermissionRequest": { "base": null, "refs": { } }, "AddLayerVersionPermissionResponse": { "base": null, "refs": { } }, "AddPermissionRequest": { "base": null, "refs": { } }, "AddPermissionResponse": { "base": null, "refs": { } }, "AdditionalVersion": { "base": null, "refs": { "AdditionalVersionWeights$key": null } }, "AdditionalVersionWeights": { "base": null, "refs": { "AliasRoutingConfiguration$AdditionalVersionWeights": "

The name of the second alias, and the percentage of traffic that is routed to it.

" } }, "Alias": { "base": null, "refs": { "AliasConfiguration$Name": "

The name of the alias.

", "CreateAliasRequest$Name": "

The name of the alias.

", "DeleteAliasRequest$Name": "

The name of the alias.

", "GetAliasRequest$Name": "

The name of the alias.

", "UpdateAliasRequest$Name": "

The name of the alias.

" } }, "AliasConfiguration": { "base": "

Provides configuration information about a Lambda function alias.

", "refs": { "AliasList$member": null } }, "AliasList": { "base": null, "refs": { "ListAliasesResponse$Aliases": "

A list of aliases.

" } }, "AliasRoutingConfiguration": { "base": "

A Lambda function alias's traffic shifting configuration.

", "refs": { "AliasConfiguration$RoutingConfig": "

The routing configuration of the alias.

", "CreateAliasRequest$RoutingConfig": "

The routing configuration of the alias.

", "UpdateAliasRequest$RoutingConfig": "

The routing configuration of the alias.

" } }, "Arn": { "base": null, "refs": { "AddPermissionRequest$SourceArn": "

For AWS services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.

", "CreateEventSourceMappingRequest$EventSourceArn": "

The Amazon Resource Name (ARN) of the event source.

", "EventSourceMappingConfiguration$EventSourceArn": "

The Amazon Resource Name (ARN) of the event source.

", "ListEventSourceMappingsRequest$EventSourceArn": "

The Amazon Resource Name (ARN) of the event source.

" } }, "BatchSize": { "base": null, "refs": { "CreateEventSourceMappingRequest$BatchSize": "

The maximum number of items to retrieve in a single batch.

", "EventSourceMappingConfiguration$BatchSize": "

The maximum number of items to retrieve in a single batch.

", "UpdateEventSourceMappingRequest$BatchSize": "

The maximum number of items to retrieve in a single batch.

" } }, "Blob": { "base": null, "refs": { "FunctionCode$ZipFile": "

The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.

", "InvocationRequest$Payload": "

JSON that you want to provide to your Lambda function as input.

", "InvocationResponse$Payload": "

The response from the function, or an error object.

", "LayerVersionContentInput$ZipFile": "

The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle the encoding for you.

", "UpdateFunctionCodeRequest$ZipFile": "

The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.

" } }, "BlobStream": { "base": null, "refs": { "InvokeAsyncRequest$InvokeArgs": "

JSON that you want to provide to your Lambda function as input.

" } }, "Boolean": { "base": null, "refs": { "CreateFunctionRequest$Publish": "

Set to true to publish the first version of the function during creation.

", "UpdateFunctionCodeRequest$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.

", "UpdateFunctionCodeRequest$DryRun": "

Set to true to validate the request parameters and access permissions without modifying the function code.

" } }, "CodeStorageExceededException": { "base": "

You have exceeded your maximum total code size per account. Limits

", "refs": { } }, "CompatibleRuntimes": { "base": null, "refs": { "GetLayerVersionResponse$CompatibleRuntimes": "

The layer's compatible runtimes.

", "LayerVersionsListItem$CompatibleRuntimes": "

The layer's compatible runtimes.

", "PublishLayerVersionRequest$CompatibleRuntimes": "

A list of compatible function runtimes. Used for filtering with ListLayers and ListLayerVersions.

", "PublishLayerVersionResponse$CompatibleRuntimes": "

The layer's compatible runtimes.

" } }, "Concurrency": { "base": null, "refs": { "GetFunctionResponse$Concurrency": "

The function's reserved concurrency.

" } }, "CreateAliasRequest": { "base": null, "refs": { } }, "CreateEventSourceMappingRequest": { "base": null, "refs": { } }, "CreateFunctionRequest": { "base": null, "refs": { } }, "Date": { "base": null, "refs": { "CreateEventSourceMappingRequest$StartingPositionTimestamp": "

With StartingPosition set to AT_TIMESTAMP, the time from which to start reading.

", "EventSourceMappingConfiguration$LastModified": "

The date that the event source mapping was last updated.

" } }, "DeadLetterConfig": { "base": "

The dead letter queue for failed asynchronous invocations.

", "refs": { "CreateFunctionRequest$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.

", "FunctionConfiguration$DeadLetterConfig": "

The function's dead letter queue.

", "UpdateFunctionConfigurationRequest$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.

" } }, "DeleteAliasRequest": { "base": null, "refs": { } }, "DeleteEventSourceMappingRequest": { "base": null, "refs": { } }, "DeleteFunctionConcurrencyRequest": { "base": null, "refs": { } }, "DeleteFunctionRequest": { "base": null, "refs": { } }, "DeleteLayerVersionRequest": { "base": null, "refs": { } }, "Description": { "base": null, "refs": { "AliasConfiguration$Description": "

A description of the alias.

", "CreateAliasRequest$Description": "

A description of the alias.

", "CreateFunctionRequest$Description": "

A description of the function.

", "FunctionConfiguration$Description": "

The function's description.

", "GetLayerVersionResponse$Description": "

The description of the version.

", "LayerVersionsListItem$Description": "

The description of the version.

", "PublishLayerVersionRequest$Description": "

The description of the version.

", "PublishLayerVersionResponse$Description": "

The description of the version.

", "PublishVersionRequest$Description": "

Specify a description for the version to override the description in the function configuration.

", "UpdateAliasRequest$Description": "

A description of the alias.

", "UpdateFunctionConfigurationRequest$Description": "

A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.

" } }, "EC2AccessDeniedException": { "base": "

Need additional permissions to configure VPC settings.

", "refs": { } }, "EC2ThrottledException": { "base": "

AWS Lambda was throttled by Amazon EC2 during Lambda function initialization using the execution role provided for the Lambda function.

", "refs": { } }, "EC2UnexpectedException": { "base": "

AWS Lambda received an unexpected EC2 client exception while setting up for the Lambda function.

", "refs": { } }, "ENILimitReachedException": { "base": "

AWS Lambda was not able to create an Elastic Network Interface (ENI) in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached.

", "refs": { } }, "Enabled": { "base": null, "refs": { "CreateEventSourceMappingRequest$Enabled": "

Disables the event source mapping to pause polling and invocation.

", "UpdateEventSourceMappingRequest$Enabled": "

Disables the event source mapping to pause polling and invocation.

" } }, "Environment": { "base": "

A function's environment variable settings.

", "refs": { "CreateFunctionRequest$Environment": "

Environment variables that are accessible from function code during execution.

", "UpdateFunctionConfigurationRequest$Environment": "

The parent object that contains your environment's configuration settings.

" } }, "EnvironmentError": { "base": "

Error messages for environment variables that could not be applied.

", "refs": { "EnvironmentResponse$Error": "

Error messages for environment variables that could not be applied.

" } }, "EnvironmentResponse": { "base": "

The results of a configuration update that applied environment variables.

", "refs": { "FunctionConfiguration$Environment": "

The function's environment variables.

" } }, "EnvironmentVariableName": { "base": null, "refs": { "EnvironmentVariables$key": null } }, "EnvironmentVariableValue": { "base": null, "refs": { "EnvironmentVariables$value": null } }, "EnvironmentVariables": { "base": null, "refs": { "Environment$Variables": "

Environment variable key-value pairs.

", "EnvironmentResponse$Variables": "

Environment variable key-value pairs.

" } }, "EventSourceMappingConfiguration": { "base": "

A mapping between an AWS resource and an AWS Lambda function. See CreateEventSourceMapping for details.

", "refs": { "EventSourceMappingsList$member": null } }, "EventSourceMappingsList": { "base": null, "refs": { "ListEventSourceMappingsResponse$EventSourceMappings": "

A list of event source mappings.

" } }, "EventSourcePosition": { "base": null, "refs": { "CreateEventSourceMappingRequest$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.

" } }, "EventSourceToken": { "base": null, "refs": { "AddPermissionRequest$EventSourceToken": "

For Alexa Smart Home functions, a token that must be supplied by the invoker.

" } }, "FunctionArn": { "base": null, "refs": { "AliasConfiguration$AliasArn": "

The Amazon Resource Name (ARN) of the alias.

", "EventSourceMappingConfiguration$FunctionArn": "

The ARN of the Lambda function.

", "FunctionConfiguration$MasterArn": "

For Lambda@Edge functions, the ARN of the master function.

", "ListTagsRequest$Resource": "

The function's Amazon Resource Name (ARN).

", "TagResourceRequest$Resource": "

The function's Amazon Resource Name (ARN).

", "UntagResourceRequest$Resource": "

The function's Amazon Resource Name (ARN).

" } }, "FunctionCode": { "base": "

The code for the Lambda function. You can specify either an object in Amazon S3, or upload a deployment package directly.

", "refs": { "CreateFunctionRequest$Code": "

The code for the function.

" } }, "FunctionCodeLocation": { "base": "

Details about a function's deployment package.

", "refs": { "GetFunctionResponse$Code": "

The deployment package of the function or version.

" } }, "FunctionConfiguration": { "base": "

Details about a function's configuration.

", "refs": { "FunctionList$member": null, "GetFunctionResponse$Configuration": "

The configuration of the function or version.

" } }, "FunctionList": { "base": null, "refs": { "ListFunctionsResponse$Functions": "

A list of Lambda functions.

", "ListVersionsByFunctionResponse$Versions": "

A list of Lambda function versions.

" } }, "FunctionName": { "base": null, "refs": { "AddPermissionRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "CreateAliasRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "CreateEventSourceMappingRequest$FunctionName": "

The name of the Lambda function.

Name formats

The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.

", "CreateFunctionRequest$FunctionName": "

The name of the Lambda function.

Name 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.

", "DeleteAliasRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "DeleteFunctionConcurrencyRequest$FunctionName": "

The name of the Lambda function.

Name 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.

", "DeleteFunctionRequest$FunctionName": "

The name of the Lambda function or version.

Name formats

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.

", "GetAliasRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "ListAliasesRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "ListEventSourceMappingsRequest$FunctionName": "

The name of the Lambda function.

Name formats

The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.

", "PublishVersionRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "PutFunctionConcurrencyRequest$FunctionName": "

The name of the Lambda function.

Name 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.

", "RemovePermissionRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "UpdateAliasRequest$FunctionName": "

The name of the lambda function.

Name 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.

", "UpdateEventSourceMappingRequest$FunctionName": "

The name of the Lambda function.

Name formats

The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.

", "UpdateFunctionCodeRequest$FunctionName": "

The name of the Lambda function.

Name 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.

", "UpdateFunctionConfigurationRequest$FunctionName": "

The name of the Lambda function.

Name 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.

" } }, "FunctionVersion": { "base": null, "refs": { "ListFunctionsRequest$FunctionVersion": "

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

" } }, "GetAccountSettingsRequest": { "base": null, "refs": { } }, "GetAccountSettingsResponse": { "base": null, "refs": { } }, "GetAliasRequest": { "base": null, "refs": { } }, "GetEventSourceMappingRequest": { "base": null, "refs": { } }, "GetFunctionConfigurationRequest": { "base": null, "refs": { } }, "GetFunctionRequest": { "base": null, "refs": { } }, "GetFunctionResponse": { "base": null, "refs": { } }, "GetLayerVersionPolicyRequest": { "base": null, "refs": { } }, "GetLayerVersionPolicyResponse": { "base": null, "refs": { } }, "GetLayerVersionRequest": { "base": null, "refs": { } }, "GetLayerVersionResponse": { "base": null, "refs": { } }, "GetPolicyRequest": { "base": null, "refs": { } }, "GetPolicyResponse": { "base": null, "refs": { } }, "Handler": { "base": null, "refs": { "CreateFunctionRequest$Handler": "

The name of the method within your code that Lambda calls to execute your function. The format includes the filename and can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model.

", "FunctionConfiguration$Handler": "

The function Lambda calls to begin executing your function.

", "UpdateFunctionConfigurationRequest$Handler": "

The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export value in your function.

" } }, "HttpStatus": { "base": null, "refs": { "InvokeAsyncResponse$Status": "

It will be 202 upon success.

" } }, "Integer": { "base": null, "refs": { "AccountLimit$ConcurrentExecutions": "

The maximum number of simultaneous function executions.

", "InvocationResponse$StatusCode": "

The HTTP status code will be in the 200 range for successful request. For the RequestResponse invocation type this status code will be 200. For the Event invocation type this status code will be 202. For the DryRun invocation type the status code will be 204.

" } }, "InvalidParameterValueException": { "base": "

One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the CreateFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.

", "refs": { } }, "InvalidRequestContentException": { "base": "

The request body could not be parsed as JSON.

", "refs": { } }, "InvalidRuntimeException": { "base": "

The runtime or runtime version specified is not supported.

", "refs": { } }, "InvalidSecurityGroupIDException": { "base": "

The Security Group ID provided in the Lambda function VPC configuration is invalid.

", "refs": { } }, "InvalidSubnetIDException": { "base": "

The Subnet ID provided in the Lambda function VPC configuration is invalid.

", "refs": { } }, "InvalidZipFileException": { "base": "

AWS Lambda could not unzip the deployment package.

", "refs": { } }, "InvocationRequest": { "base": null, "refs": { } }, "InvocationResponse": { "base": null, "refs": { } }, "InvocationType": { "base": null, "refs": { "InvocationRequest$InvocationType": "

Choose from the following options.

" } }, "InvokeAsyncRequest": { "base": null, "refs": { } }, "InvokeAsyncResponse": { "base": "

Upon success, it returns empty response. Otherwise, throws an exception.

", "refs": { } }, "KMSAccessDeniedException": { "base": "

Lambda was unable to decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.

", "refs": { } }, "KMSDisabledException": { "base": "

Lambda was unable to decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.

", "refs": { } }, "KMSInvalidStateException": { "base": "

Lambda was unable to decrypt the environment variables because the KMS key used is in an invalid state for Decrypt. Check the function's KMS key settings.

", "refs": { } }, "KMSKeyArn": { "base": null, "refs": { "CreateFunctionRequest$KMSKeyArn": "

The ARN of the AWS Key Management Service key used to encrypt your function's environment variables. If not provided, AWS Lambda uses a default service key.

", "FunctionConfiguration$KMSKeyArn": "

The KMS key used to encrypt the function's environment variables. Only returned if you've configured a customer managed CMK.

", "UpdateFunctionConfigurationRequest$KMSKeyArn": "

The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If you elect to use the AWS Lambda default service key, pass in an empty string (\"\") for this parameter.

" } }, "KMSNotFoundException": { "base": "

Lambda was unable to decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.

", "refs": { } }, "Layer": { "base": "

An AWS Lambda layer.

", "refs": { "LayersReferenceList$member": null } }, "LayerArn": { "base": null, "refs": { "GetLayerVersionResponse$LayerArn": "

The ARN of the layer.

", "LayersListItem$LayerArn": "

The Amazon Resource Name (ARN) of the function layer.

", "PublishLayerVersionResponse$LayerArn": "

The ARN of the layer.

" } }, "LayerList": { "base": null, "refs": { "CreateFunctionRequest$Layers": "

A list of function layers to add to the function's execution environment. Specify each layer by ARN, including the version.

", "UpdateFunctionConfigurationRequest$Layers": "

A list of function layers to add to the function's execution environment.

" } }, "LayerName": { "base": null, "refs": { "AddLayerVersionPermissionRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "DeleteLayerVersionRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "GetLayerVersionPolicyRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "GetLayerVersionRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "LayersListItem$LayerName": "

The name of the layer.

", "ListLayerVersionsRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "PublishLayerVersionRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

", "RemoveLayerVersionPermissionRequest$LayerName": "

The name or Amazon Resource Name (ARN) of the layer.

" } }, "LayerPermissionAllowedAction": { "base": null, "refs": { "AddLayerVersionPermissionRequest$Action": "

The API action that grants access to the layer. For example, lambda:GetLayerVersion.

" } }, "LayerPermissionAllowedPrincipal": { "base": null, "refs": { "AddLayerVersionPermissionRequest$Principal": "

An account ID, or * to grant permission to all AWS accounts.

" } }, "LayerVersionArn": { "base": null, "refs": { "GetLayerVersionResponse$LayerVersionArn": "

The ARN of the layer version.

", "Layer$Arn": "

The Amazon Resource Name (ARN) of the function layer.

", "LayerList$member": null, "LayerVersionsListItem$LayerVersionArn": "

The ARN of the layer version.

", "PublishLayerVersionResponse$LayerVersionArn": "

The ARN of the layer version.

" } }, "LayerVersionContentInput": { "base": "

A ZIP archive that contains the contents of an AWS Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.

", "refs": { "PublishLayerVersionRequest$Content": "

The function layer archive.

" } }, "LayerVersionContentOutput": { "base": "

Details about a version of an AWS Lambda layer.

", "refs": { "GetLayerVersionResponse$Content": "

Details about the layer version.

", "PublishLayerVersionResponse$Content": "

Details about the layer version.

" } }, "LayerVersionNumber": { "base": null, "refs": { "AddLayerVersionPermissionRequest$VersionNumber": "

The version number.

", "DeleteLayerVersionRequest$VersionNumber": "

The version number.

", "GetLayerVersionPolicyRequest$VersionNumber": "

The version number.

", "GetLayerVersionRequest$VersionNumber": "

The version number.

", "GetLayerVersionResponse$Version": "

The version number.

", "LayerVersionsListItem$Version": "

The version number.

", "PublishLayerVersionResponse$Version": "

The version number.

", "RemoveLayerVersionPermissionRequest$VersionNumber": "

The version number.

" } }, "LayerVersionsList": { "base": null, "refs": { "ListLayerVersionsResponse$LayerVersions": "

A list of versions.

" } }, "LayerVersionsListItem": { "base": "

Details about a version of an AWS Lambda layer.

", "refs": { "LayerVersionsList$member": null, "LayersListItem$LatestMatchingVersion": "

The newest version of the layer.

" } }, "LayersList": { "base": null, "refs": { "ListLayersResponse$Layers": "

A list of function layers.

" } }, "LayersListItem": { "base": "

Details about an AWS Lambda layer.

", "refs": { "LayersList$member": null } }, "LayersReferenceList": { "base": null, "refs": { "FunctionConfiguration$Layers": "

The function's layers

" } }, "LicenseInfo": { "base": null, "refs": { "GetLayerVersionResponse$LicenseInfo": "

The layer's software license.

", "LayerVersionsListItem$LicenseInfo": "

The layer's open-source license.

", "PublishLayerVersionRequest$LicenseInfo": "

The layer's software license. It can be any of the following:

", "PublishLayerVersionResponse$LicenseInfo": "

The layer's software license.

" } }, "ListAliasesRequest": { "base": null, "refs": { } }, "ListAliasesResponse": { "base": null, "refs": { } }, "ListEventSourceMappingsRequest": { "base": null, "refs": { } }, "ListEventSourceMappingsResponse": { "base": null, "refs": { } }, "ListFunctionsRequest": { "base": null, "refs": { } }, "ListFunctionsResponse": { "base": "

A list of Lambda functions.

", "refs": { } }, "ListLayerVersionsRequest": { "base": null, "refs": { } }, "ListLayerVersionsResponse": { "base": null, "refs": { } }, "ListLayersRequest": { "base": null, "refs": { } }, "ListLayersResponse": { "base": null, "refs": { } }, "ListTagsRequest": { "base": null, "refs": { } }, "ListTagsResponse": { "base": null, "refs": { } }, "ListVersionsByFunctionRequest": { "base": null, "refs": { } }, "ListVersionsByFunctionResponse": { "base": null, "refs": { } }, "LogType": { "base": null, "refs": { "InvocationRequest$LogType": "

Set to Tail to include the execution log in the response.

" } }, "Long": { "base": null, "refs": { "AccountLimit$TotalCodeSize": "

The amount of storage space that you can use for all deployment packages and layer archives.

", "AccountLimit$CodeSizeUnzipped": "

The maximum size of your function's code and layers when extracted.

", "AccountLimit$CodeSizeZipped": "

The maximum size of a deployment package when uploaded direcly to AWS Lambda. Use Amazon S3 for larger files.

", "AccountUsage$TotalCodeSize": "

The amount of storage space, in bytes, in use by deployment packages and layer archives.

", "AccountUsage$FunctionCount": "

The number of Lambda functions.

", "FunctionConfiguration$CodeSize": "

The size of the function's deployment package in bytes.

", "Layer$CodeSize": "

The size of the layer archive in bytes.

", "LayerVersionContentOutput$CodeSize": "

The size of the layer archive in bytes.

" } }, "MasterRegion": { "base": null, "refs": { "ListFunctionsRequest$MasterRegion": "

For Lambda@Edge functions, the region of the master function. For example, us-east-2 or ALL. If specified, you must set FunctionVersion to ALL.

" } }, "MaxLayerListItems": { "base": null, "refs": { "ListLayerVersionsRequest$MaxItems": "

The maximum number of versions to return.

", "ListLayersRequest$MaxItems": "

The maximum number of layers to return.

" } }, "MaxListItems": { "base": null, "refs": { "ListAliasesRequest$MaxItems": "

Limit the number of aliases returned.

", "ListEventSourceMappingsRequest$MaxItems": "

The maximum number of event source mappings to return.

", "ListFunctionsRequest$MaxItems": "

Specify a value between 1 and 50 to limit the number of functions in the response.

", "ListVersionsByFunctionRequest$MaxItems": "

Limit the number of versions returned.

" } }, "MemorySize": { "base": null, "refs": { "CreateFunctionRequest$MemorySize": "

The amount of memory that your function has access to. Increasing the function's memory also increases it's CPU allocation. The default value is 128 MB. The value must be a multiple of 64 MB.

", "FunctionConfiguration$MemorySize": "

The memory allocated to the function

", "UpdateFunctionConfigurationRequest$MemorySize": "

The amount of memory, in MB, your Lambda function is given. AWS Lambda uses this memory size to infer the amount of CPU allocated to your function. Your function use-case determines your CPU and memory requirements. For example, a database operation might need less memory compared to an image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.

" } }, "NameSpacedFunctionArn": { "base": null, "refs": { "FunctionConfiguration$FunctionArn": "

The function's Amazon Resource Name (ARN).

" } }, "NamespacedFunctionName": { "base": null, "refs": { "FunctionConfiguration$FunctionName": "

The name of the function.

", "GetFunctionConfigurationRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "GetFunctionRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "GetPolicyRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "InvocationRequest$FunctionName": "

The name of the Lambda function, version, or alias.

Name formats

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.

", "InvokeAsyncRequest$FunctionName": "

The name of the Lambda function.

Name 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.

", "ListVersionsByFunctionRequest$FunctionName": "

The name of the lambda function.

Name 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.

" } }, "NamespacedStatementId": { "base": null, "refs": { "RemovePermissionRequest$StatementId": "

Statement ID of the permission to remove.

" } }, "OrganizationId": { "base": null, "refs": { "AddLayerVersionPermissionRequest$OrganizationId": "

With the principal set to *, grant permission to all accounts in the specified organization.

" } }, "PolicyLengthExceededException": { "base": "

Lambda function access policy is limited to 20 KB.

", "refs": { } }, "PreconditionFailedException": { "base": "

The RevisionId provided does not match the latest RevisionId for the Lambda function or alias. Call the GetFunction or the GetAlias API to retrieve the latest RevisionId for your resource.

", "refs": { } }, "Principal": { "base": null, "refs": { "AddPermissionRequest$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.

" } }, "PublishLayerVersionRequest": { "base": null, "refs": { } }, "PublishLayerVersionResponse": { "base": null, "refs": { } }, "PublishVersionRequest": { "base": null, "refs": { } }, "PutFunctionConcurrencyRequest": { "base": null, "refs": { } }, "Qualifier": { "base": null, "refs": { "AddPermissionRequest$Qualifier": "

Specify a version or alias to add permissions to a published version of the function.

", "DeleteFunctionRequest$Qualifier": "

Specify a version to delete. You cannot delete a version that is referenced by an alias.

", "GetFunctionConfigurationRequest$Qualifier": "

Specify a version or alias to get details about a published version of the function.

", "GetFunctionRequest$Qualifier": "

Specify a version or alias to get details about a published version of the function.

", "GetPolicyRequest$Qualifier": "

Specify a version or alias to get the policy for that resource.

", "InvocationRequest$Qualifier": "

Specify a version or alias to invoke a published version of the function.

", "RemovePermissionRequest$Qualifier": "

Specify a version or alias to remove permissions from a published version of the function.

" } }, "RemoveLayerVersionPermissionRequest": { "base": null, "refs": { } }, "RemovePermissionRequest": { "base": null, "refs": { } }, "RequestTooLargeException": { "base": "

The request payload exceeded the Invoke request body JSON input limit. For more information, see Limits.

", "refs": { } }, "ReservedConcurrentExecutions": { "base": null, "refs": { "Concurrency$ReservedConcurrentExecutions": "

The number of concurrent executions reserved for this function. For more information, see Managing Concurrency.

", "PutFunctionConcurrencyRequest$ReservedConcurrentExecutions": "

The number of simultaneous executions to reserve for the function.

" } }, "ResourceArn": { "base": null, "refs": { "DeadLetterConfig$TargetArn": "

The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

" } }, "ResourceConflictException": { "base": "

The resource already exists.

", "refs": { } }, "ResourceInUseException": { "base": "

The operation conflicts with the resource's availability. For example, you attempted to update an EventSource Mapping in CREATING, or tried to delete a EventSource mapping currently in the UPDATING state.

", "refs": { } }, "ResourceNotFoundException": { "base": "

The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.

", "refs": { } }, "RoleArn": { "base": null, "refs": { "CreateFunctionRequest$Role": "

The Amazon Resource Name (ARN) of the function's execution role.

", "FunctionConfiguration$Role": "

The function's execution role.

", "UpdateFunctionConfigurationRequest$Role": "

The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.

" } }, "Runtime": { "base": null, "refs": { "CompatibleRuntimes$member": null, "CreateFunctionRequest$Runtime": "

The identifier of the function's runtime.

", "FunctionConfiguration$Runtime": "

The runtime environment for the Lambda function.

", "ListLayerVersionsRequest$CompatibleRuntime": "

A runtime identifier. For example, go1.x.

", "ListLayersRequest$CompatibleRuntime": "

A runtime identifier. For example, go1.x.

", "UpdateFunctionConfigurationRequest$Runtime": "

The runtime version for the function.

" } }, "S3Bucket": { "base": null, "refs": { "FunctionCode$S3Bucket": "

An Amazon S3 bucket in the same region as your function. The bucket can be in a different AWS account.

", "LayerVersionContentInput$S3Bucket": "

The Amazon S3 bucket of the layer archive.

", "UpdateFunctionCodeRequest$S3Bucket": "

An Amazon S3 bucket in the same region as your function. The bucket can be in a different AWS account.

" } }, "S3Key": { "base": null, "refs": { "FunctionCode$S3Key": "

The Amazon S3 key of the deployment package.

", "LayerVersionContentInput$S3Key": "

The Amazon S3 key of the layer archive.

", "UpdateFunctionCodeRequest$S3Key": "

The Amazon S3 key of the deployment package.

" } }, "S3ObjectVersion": { "base": null, "refs": { "FunctionCode$S3ObjectVersion": "

For versioned objects, the version of the deployment package object to use.

", "LayerVersionContentInput$S3ObjectVersion": "

For versioned objects, the version of the layer archive object to use.

", "UpdateFunctionCodeRequest$S3ObjectVersion": "

For versioned objects, the version of the deployment package object to use.

" } }, "SecurityGroupId": { "base": null, "refs": { "SecurityGroupIds$member": null } }, "SecurityGroupIds": { "base": null, "refs": { "VpcConfig$SecurityGroupIds": "

A list of VPC security groups IDs.

", "VpcConfigResponse$SecurityGroupIds": "

A list of VPC security groups IDs.

" } }, "SensitiveString": { "base": null, "refs": { "EnvironmentError$Message": "

The error message.

" } }, "ServiceException": { "base": "

The AWS Lambda service encountered an internal error.

", "refs": { } }, "SourceOwner": { "base": null, "refs": { "AddPermissionRequest$SourceAccount": "

For AWS services, the ID of the account that owns the resource. Use instead of SourceArn to grant permission to resources owned by another account (e.g. all of an account's Amazon S3 buckets). Or use 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.

" } }, "StatementId": { "base": null, "refs": { "AddLayerVersionPermissionRequest$StatementId": "

An identifier that distinguishes the policy from others on the same layer version.

", "AddPermissionRequest$StatementId": "

A statement identifier that differentiates the statement from others in the same policy.

", "RemoveLayerVersionPermissionRequest$StatementId": "

The identifier that was specified when the statement was added.

" } }, "String": { "base": null, "refs": { "AddLayerVersionPermissionRequest$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.

", "AddLayerVersionPermissionResponse$Statement": "

The permission statement.

", "AddLayerVersionPermissionResponse$RevisionId": "

A unique identifier for the current revision of the policy.

", "AddPermissionRequest$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.

", "AddPermissionResponse$Statement": "

The permission statement added to the function policy.

", "AliasConfiguration$RevisionId": "

A unique identifier that changes when you update the alias.

", "CodeStorageExceededException$Type": "

The exception type.

", "CodeStorageExceededException$message": null, "DeleteEventSourceMappingRequest$UUID": "

The identifier of the event source mapping.

", "EC2AccessDeniedException$Type": null, "EC2AccessDeniedException$Message": null, "EC2ThrottledException$Type": null, "EC2ThrottledException$Message": null, "EC2UnexpectedException$Type": null, "EC2UnexpectedException$Message": null, "EC2UnexpectedException$EC2ErrorCode": null, "ENILimitReachedException$Type": null, "ENILimitReachedException$Message": null, "EnvironmentError$ErrorCode": "

The error code.

", "EventSourceMappingConfiguration$UUID": "

The identifier of the event source mapping.

", "EventSourceMappingConfiguration$LastProcessingResult": "

The result of the last AWS Lambda invocation of your Lambda function.

", "EventSourceMappingConfiguration$State": "

The state of the event source mapping. It can be one of the following: Creating, Enabling, Enabled, Disabling, Disabled, Updating, or Deleting.

", "EventSourceMappingConfiguration$StateTransitionReason": "

The cause of the last state change, either User initiated or Lambda initiated.

", "FunctionCodeLocation$RepositoryType": "

The service hosting the file.

", "FunctionCodeLocation$Location": "

A pre-signed URL that you can use to download the deployment package.

", "FunctionConfiguration$CodeSha256": "

The SHA256 hash of the function's deployment package.

", "FunctionConfiguration$RevisionId": "

Represents the latest updated revision of the function or alias.

", "GetEventSourceMappingRequest$UUID": "

The identifier of the event source mapping.

", "GetLayerVersionPolicyResponse$Policy": "

The policy document.

", "GetLayerVersionPolicyResponse$RevisionId": "

A unique identifier for the current revision of the policy.

", "GetPolicyResponse$Policy": "

The resource-based policy.

", "GetPolicyResponse$RevisionId": "

A unique identifier for the current revision of the policy.

", "InvalidParameterValueException$Type": "

The exception type.

", "InvalidParameterValueException$message": "

The exception message.

", "InvalidRequestContentException$Type": "

The exception type.

", "InvalidRequestContentException$message": "

The exception message.

", "InvalidRuntimeException$Type": null, "InvalidRuntimeException$Message": null, "InvalidSecurityGroupIDException$Type": null, "InvalidSecurityGroupIDException$Message": null, "InvalidSubnetIDException$Type": null, "InvalidSubnetIDException$Message": null, "InvalidZipFileException$Type": null, "InvalidZipFileException$Message": null, "InvocationRequest$ClientContext": "

Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.

", "InvocationResponse$FunctionError": "

If present, indicates that an error occured during function execution. Details about the error are included in the response payload.

", "InvocationResponse$LogResult": "

The last 4 KB of the execution log, base64 encoded.

", "KMSAccessDeniedException$Type": null, "KMSAccessDeniedException$Message": null, "KMSDisabledException$Type": null, "KMSDisabledException$Message": null, "KMSInvalidStateException$Type": null, "KMSInvalidStateException$Message": null, "KMSNotFoundException$Type": null, "KMSNotFoundException$Message": null, "LayerVersionContentOutput$Location": "

A link to the layer archive in Amazon S3 that is valid for 10 minutes.

", "LayerVersionContentOutput$CodeSha256": "

The SHA-256 hash of the layer archive.

", "ListAliasesRequest$Marker": "

Specify the pagination token returned by a previous request to retrieve the next page of results.

", "ListAliasesResponse$NextMarker": "

Pagination token included if more results are available.

", "ListEventSourceMappingsRequest$Marker": "

A pagination token returned by a previous call.

", "ListEventSourceMappingsResponse$NextMarker": "

A pagination token that's returned when the response doesn't contain all event source mappings.

", "ListFunctionsRequest$Marker": "

Specify the pagination token returned by a previous request to retrieve the next page of results.

", "ListFunctionsResponse$NextMarker": "

Pagination token included if more results are available.

", "ListLayerVersionsRequest$Marker": "

A pagination token returned by a previous call.

", "ListLayerVersionsResponse$NextMarker": "

A pagination token returned when the response doesn't contain all versions.

", "ListLayersRequest$Marker": "

A pagination token returned by a previous call.

", "ListLayersResponse$NextMarker": "

A pagination token returned when the response doesn't contain all layers.

", "ListVersionsByFunctionRequest$Marker": "

Specify the pagination token returned by a previous request to retrieve the next page of results.

", "ListVersionsByFunctionResponse$NextMarker": "

Pagination token included if more results are available.

", "PolicyLengthExceededException$Type": null, "PolicyLengthExceededException$message": null, "PreconditionFailedException$Type": "

The exception type.

", "PreconditionFailedException$message": "

The exception message.

", "PublishVersionRequest$CodeSha256": "

Only publish a version if the hash matches the value 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 you uploaded from the output of UpdateFunctionCode.

", "PublishVersionRequest$RevisionId": "

Only update the function if the revision ID matches the ID specified. Use this option to avoid publishing a version if the function configuration has changed since you last updated it.

", "RemoveLayerVersionPermissionRequest$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.

", "RemovePermissionRequest$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.

", "RequestTooLargeException$Type": null, "RequestTooLargeException$message": null, "ResourceConflictException$Type": "

The exception type.

", "ResourceConflictException$message": "

The exception message.

", "ResourceInUseException$Type": null, "ResourceInUseException$Message": null, "ResourceNotFoundException$Type": null, "ResourceNotFoundException$Message": null, "ServiceException$Type": null, "ServiceException$Message": null, "SubnetIPAddressLimitReachedException$Type": null, "SubnetIPAddressLimitReachedException$Message": null, "TooManyRequestsException$retryAfterSeconds": "

The number of seconds the caller should wait before retrying.

", "TooManyRequestsException$Type": null, "TooManyRequestsException$message": null, "UnsupportedMediaTypeException$Type": null, "UnsupportedMediaTypeException$message": null, "UpdateAliasRequest$RevisionId": "

Only update the alias if the revision ID matches the ID specified. Use this option to avoid modifying an alias that has changed since you last read it.

", "UpdateEventSourceMappingRequest$UUID": "

The identifier of the event source mapping.

", "UpdateFunctionCodeRequest$RevisionId": "

Only update the function if the revision ID matches the ID specified. Use this option to avoid modifying a function that has changed since you last read it.

", "UpdateFunctionConfigurationRequest$RevisionId": "

Only update the function if the revision ID matches the ID specified. Use this option to avoid modifying a function that has changed since you last read it.

" } }, "SubnetIPAddressLimitReachedException": { "base": "

AWS Lambda was not able to set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.

", "refs": { } }, "SubnetId": { "base": null, "refs": { "SubnetIds$member": null } }, "SubnetIds": { "base": null, "refs": { "VpcConfig$SubnetIds": "

A list of VPC subnet IDs.

", "VpcConfigResponse$SubnetIds": "

A list of VPC subnet IDs.

" } }, "TagKey": { "base": null, "refs": { "TagKeyList$member": null, "Tags$key": null } }, "TagKeyList": { "base": null, "refs": { "UntagResourceRequest$TagKeys": "

A list of tag keys to remove from the function.

" } }, "TagResourceRequest": { "base": null, "refs": { } }, "TagValue": { "base": null, "refs": { "Tags$value": null } }, "Tags": { "base": null, "refs": { "CreateFunctionRequest$Tags": "

A list of tags to apply to the function.

", "GetFunctionResponse$Tags": "

The function's tags.

", "ListTagsResponse$Tags": "

The function's tags.

", "TagResourceRequest$Tags": "

A list of tags to apply to the function.

" } }, "ThrottleReason": { "base": null, "refs": { "TooManyRequestsException$Reason": null } }, "Timeout": { "base": null, "refs": { "CreateFunctionRequest$Timeout": "

The amount of time that Lambda allows a function to run before terminating it. The default is 3 seconds. The maximum allowed value is 900 seconds.

", "FunctionConfiguration$Timeout": "

The amount of time that Lambda allows a function to run before terminating it.

", "UpdateFunctionConfigurationRequest$Timeout": "

The amount of time that Lambda allows a function to run before terminating it. The default is 3 seconds. The maximum allowed value is 900 seconds.

" } }, "Timestamp": { "base": null, "refs": { "FunctionConfiguration$LastModified": "

The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

", "GetLayerVersionResponse$CreatedDate": "

The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

", "LayerVersionsListItem$CreatedDate": "

The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000.

", "PublishLayerVersionResponse$CreatedDate": "

The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

" } }, "TooManyRequestsException": { "base": "

Request throughput limit exceeded.

", "refs": { } }, "TracingConfig": { "base": "

The function's AWS X-Ray tracing configuration.

", "refs": { "CreateFunctionRequest$TracingConfig": "

Set Mode to Active to sample and trace a subset of incoming requests with AWS X-Ray.

", "UpdateFunctionConfigurationRequest$TracingConfig": "

Set Mode to Active to sample and trace a subset of incoming requests with AWS X-Ray.

" } }, "TracingConfigResponse": { "base": "

The function's AWS X-Ray tracing configuration.

", "refs": { "FunctionConfiguration$TracingConfig": "

The function's AWS X-Ray tracing configuration.

" } }, "TracingMode": { "base": null, "refs": { "TracingConfig$Mode": "

The tracing mode.

", "TracingConfigResponse$Mode": "

The tracing mode.

" } }, "UnreservedConcurrentExecutions": { "base": null, "refs": { "AccountLimit$UnreservedConcurrentExecutions": "

The maximum number of simultaneous function executions, less the concurrency reserved for individual functions with PutFunctionConcurrency.

" } }, "UnsupportedMediaTypeException": { "base": "

The content type of the Invoke request body is not JSON.

", "refs": { } }, "UntagResourceRequest": { "base": null, "refs": { } }, "UpdateAliasRequest": { "base": null, "refs": { } }, "UpdateEventSourceMappingRequest": { "base": null, "refs": { } }, "UpdateFunctionCodeRequest": { "base": null, "refs": { } }, "UpdateFunctionConfigurationRequest": { "base": null, "refs": { } }, "Version": { "base": null, "refs": { "AliasConfiguration$FunctionVersion": "

The function version that the alias invokes.

", "CreateAliasRequest$FunctionVersion": "

The function version that the alias invokes.

", "FunctionConfiguration$Version": "

The version of the Lambda function.

", "InvocationResponse$ExecutedVersion": "

The version of the function that executed. When you invoke a function with an alias, indicates which version the alias resolved to.

", "ListAliasesRequest$FunctionVersion": "

Specify a function version to only list aliases that invoke that version.

", "UpdateAliasRequest$FunctionVersion": "

The function version that the alias invokes.

" } }, "VpcConfig": { "base": "

The VPC security groups and subnets attached to a Lambda function.

", "refs": { "CreateFunctionRequest$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.

", "UpdateFunctionConfigurationRequest$VpcConfig": "

Specify security groups and subnets in a VPC to which your Lambda function needs access.

" } }, "VpcConfigResponse": { "base": "

The VPC security groups and subnets attached to a Lambda function.

", "refs": { "FunctionConfiguration$VpcConfig": "

The function's networking configuration.

" } }, "VpcId": { "base": null, "refs": { "VpcConfigResponse$VpcId": "

The ID of the VPC.

" } }, "Weight": { "base": null, "refs": { "AdditionalVersionWeights$value": null } } } }