AWS Lambda

2023/06/05 - AWS Lambda - 13 updated api methods

Changes  Add Ruby 3.2 (ruby3.2) Runtime support to AWS Lambda.

CreateFunction (updated) Link ¶
Changes (both)
{'Runtime': {'ruby3.2'}}

Creates a Lambda function. To create a function, you need a deployment package and an execution role . The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web Services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing.

If the deployment package is a container image , then you set the package type to Image . For a container image, the code property must include the URI of a container image in the Amazon ECR registry. You do not need to specify the handler and runtime properties.

If the deployment package is a .zip file archive , then you set the package type to Zip . For a .zip file archive, the code property specifies the location of the .zip file. You must also specify the handler and runtime properties. The code in the deployment package must be compatible with the target instruction set architecture of the function (x86-64 or arm64 ). If you do not specify the architecture, then the default value is x86-64 .

When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State , StateReason , and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Lambda function states .

A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't 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 ).

You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode , Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set of signing profiles, which define the trusted publishers for this function.

If another Amazon Web Services account or an Amazon Web Service invokes your function, use AddPermission to grant permission by creating a resource-based Identity and Access Management (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 Amazon Web Services, create an event source mapping ( CreateEventSourceMapping ), or configure a function trigger in the other service. For more information, see Invoking Lambda functions .

See also: AWS API Documentation

Request Syntax

client.create_function(
    FunctionName='string',
    Runtime='nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    Role='string',
    Handler='string',
    Code={
        'ZipFile': b'bytes',
        'S3Bucket': 'string',
        'S3Key': 'string',
        'S3ObjectVersion': 'string',
        'ImageUri': 'string'
    },
    Description='string',
    Timeout=123,
    MemorySize=123,
    Publish=True|False,
    VpcConfig={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    },
    PackageType='Zip'|'Image',
    DeadLetterConfig={
        'TargetArn': 'string'
    },
    Environment={
        'Variables': {
            'string': 'string'
        }
    },
    KMSKeyArn='string',
    TracingConfig={
        'Mode': 'Active'|'PassThrough'
    },
    Tags={
        'string': 'string'
    },
    Layers=[
        'string',
    ],
    FileSystemConfigs=[
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    ImageConfig={
        'EntryPoint': [
            'string',
        ],
        'Command': [
            'string',
        ],
        'WorkingDirectory': 'string'
    },
    CodeSigningConfigArn='string',
    Architectures=[
        'x86_64'|'arm64',
    ],
    EphemeralStorage={
        'Size': 123
    },
    SnapStart={
        'ApplyOn': 'PublishedVersions'|'None'
    }
)
type FunctionName

string

param FunctionName

[REQUIRED]

The name of the Lambda function.

Name formats

  • Function namemy-function .

  • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function .

  • Partial ARN123456789012: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.

type Runtime

string

param Runtime

The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

type Role

string

param Role

[REQUIRED]

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

type Handler

string

param Handler

The name of the method within your code that Lambda calls to run your function. Handler is required if the deployment package is a .zip file archive. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Lambda programming model .

type Code

dict

param Code

[REQUIRED]

The code for the function.

  • ZipFile (bytes) --

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

  • S3Bucket (string) --

    An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.

  • S3Key (string) --

    The Amazon S3 key of the deployment package.

  • S3ObjectVersion (string) --

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

  • ImageUri (string) --

    URI of a container image in the Amazon ECR registry.

type Description

string

param Description

A description of the function.

type Timeout

integer

param Timeout

The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see Lambda execution environment .

type MemorySize

integer

param MemorySize

The amount of memory available to the function at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.

type Publish

boolean

param Publish

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

type VpcConfig

dict

param VpcConfig

For network connectivity to Amazon Web Services 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 access resources and the internet only through that VPC. For more information, see Configuring a Lambda function to access resources in a VPC .

  • SubnetIds (list) --

    A list of VPC subnet IDs.

    • (string) --

  • SecurityGroupIds (list) --

    A list of VPC security group IDs.

    • (string) --

type PackageType

string

param PackageType

The type of deployment package. Set to Image for container image and set to Zip for .zip file archive.

type DeadLetterConfig

dict

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

  • TargetArn (string) --

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

type Environment

dict

param Environment

Environment variables that are accessible from function code during execution.

type KMSKeyArn

string

param KMSKeyArn

The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's environment variables . When Lambda SnapStart is activated, Lambda also uses this key is to encrypt your function's snapshot. If you deploy your function using a container image, Lambda also uses this key to encrypt your function when it's deployed. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). If you don't provide a customer managed key, Lambda uses a default service key.

type TracingConfig

dict

param TracingConfig

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

  • Mode (string) --

    The tracing mode.

type Tags

dict

param Tags

A list of tags to apply to the function.

  • (string) --

    • (string) --

type Layers

list

param Layers

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

  • (string) --

type FileSystemConfigs

list

param FileSystemConfigs

Connection settings for an Amazon EFS file system.

  • (dict) --

    Details about the connection between a Lambda function and an Amazon EFS file system .

    • Arn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

    • LocalMountPath (string) -- [REQUIRED]

      The path where the function can access the file system, starting with /mnt/ .

type ImageConfig

dict

param ImageConfig

Container image configuration values that override the values in the container image Dockerfile.

  • EntryPoint (list) --

    Specifies the entry point to their application, which is typically the location of the runtime executable.

    • (string) --

  • Command (list) --

    Specifies parameters that you want to pass in with ENTRYPOINT.

    • (string) --

  • WorkingDirectory (string) --

    Specifies the working directory.

type CodeSigningConfigArn

string

param CodeSigningConfigArn

To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.

type Architectures

list

param Architectures

The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64). The default value is x86_64 .

  • (string) --

type EphemeralStorage

dict

param EphemeralStorage

The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB.

  • Size (integer) -- [REQUIRED]

    The size of the function's /tmp directory.

type SnapStart

dict

param SnapStart

The function's SnapStart setting.

  • ApplyOn (string) --

    Set to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version.

rtype

dict

returns

Response Syntax

{
    'FunctionName': 'string',
    'FunctionArn': 'string',
    'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    'Role': 'string',
    'Handler': 'string',
    'CodeSize': 123,
    'Description': 'string',
    'Timeout': 123,
    'MemorySize': 123,
    'LastModified': 'string',
    'CodeSha256': 'string',
    'Version': 'string',
    'VpcConfig': {
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'VpcId': 'string'
    },
    'DeadLetterConfig': {
        'TargetArn': 'string'
    },
    'Environment': {
        'Variables': {
            'string': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'KMSKeyArn': 'string',
    'TracingConfig': {
        'Mode': 'Active'|'PassThrough'
    },
    'MasterArn': 'string',
    'RevisionId': 'string',
    'Layers': [
        {
            'Arn': 'string',
            'CodeSize': 123,
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string'
        },
    ],
    'State': 'Pending'|'Active'|'Inactive'|'Failed',
    'StateReason': 'string',
    'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
    'LastUpdateStatusReason': 'string',
    'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'FileSystemConfigs': [
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    'PackageType': 'Zip'|'Image',
    'ImageConfigResponse': {
        'ImageConfig': {
            'EntryPoint': [
                'string',
            ],
            'Command': [
                'string',
            ],
            'WorkingDirectory': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'SigningProfileVersionArn': 'string',
    'SigningJobArn': 'string',
    'Architectures': [
        'x86_64'|'arm64',
    ],
    'EphemeralStorage': {
        'Size': 123
    },
    'SnapStart': {
        'ApplyOn': 'PublishedVersions'|'None',
        'OptimizationStatus': 'On'|'Off'
    },
    'RuntimeVersionConfig': {
        'RuntimeVersionArn': 'string',
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Details about a function's configuration.

    • FunctionName (string) --

      The name of the function.

    • FunctionArn (string) --

      The function's Amazon Resource Name (ARN).

    • Runtime (string) --

      The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

    • Role (string) --

      The function's execution role.

    • Handler (string) --

      The function that Lambda calls to begin running your function.

    • CodeSize (integer) --

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

    • Description (string) --

      The function's description.

    • Timeout (integer) --

      The amount of time in seconds that Lambda allows a function to run before stopping it.

    • MemorySize (integer) --

      The amount of memory available to the function at runtime.

    • LastModified (string) --

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

    • CodeSha256 (string) --

      The SHA256 hash of the function's deployment package.

    • Version (string) --

      The version of the Lambda function.

    • VpcConfig (dict) --

      The function's networking configuration.

      • SubnetIds (list) --

        A list of VPC subnet IDs.

        • (string) --

      • SecurityGroupIds (list) --

        A list of VPC security group IDs.

        • (string) --

      • VpcId (string) --

        The ID of the VPC.

    • DeadLetterConfig (dict) --

      The function's dead letter queue.

      • TargetArn (string) --

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

    • Environment (dict) --

      The function's environment variables . Omitted from CloudTrail logs.

      • Variables (dict) --

        Environment variable key-value pairs. Omitted from CloudTrail logs.

        • (string) --

          • (string) --

      • Error (dict) --

        Error messages for environment variables that couldn't be applied.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

    • KMSKeyArn (string) --

      The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

    • TracingConfig (dict) --

      The function's X-Ray tracing configuration.

      • Mode (string) --

        The tracing mode.

    • MasterArn (string) --

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

    • RevisionId (string) --

      The latest updated revision of the function or alias.

    • Layers (list) --

      The function's layers .

      • (dict) --

        An Lambda layer .

        • Arn (string) --

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

        • CodeSize (integer) --

          The size of the layer archive in bytes.

        • SigningProfileVersionArn (string) --

          The Amazon Resource Name (ARN) for a signing profile version.

        • SigningJobArn (string) --

          The Amazon Resource Name (ARN) of a signing job.

    • State (string) --

      The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

    • StateReason (string) --

      The reason for the function's current state.

    • StateReasonCode (string) --

      The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

    • LastUpdateStatus (string) --

      The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

    • LastUpdateStatusReason (string) --

      The reason for the last update that was performed on the function.

    • LastUpdateStatusReasonCode (string) --

      The reason code for the last update that was performed on the function.

    • FileSystemConfigs (list) --

      Connection settings for an Amazon EFS file system .

      • (dict) --

        Details about the connection between a Lambda function and an Amazon EFS file system .

        • Arn (string) --

          The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

        • LocalMountPath (string) --

          The path where the function can access the file system, starting with /mnt/ .

    • PackageType (string) --

      The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

    • ImageConfigResponse (dict) --

      The function's image configuration values.

      • ImageConfig (dict) --

        Configuration values that override the container image Dockerfile.

        • EntryPoint (list) --

          Specifies the entry point to their application, which is typically the location of the runtime executable.

          • (string) --

        • Command (list) --

          Specifies parameters that you want to pass in with ENTRYPOINT.

          • (string) --

        • WorkingDirectory (string) --

          Specifies the working directory.

      • Error (dict) --

        Error response to GetFunctionConfiguration .

        • ErrorCode (string) --

          Error code.

        • Message (string) --

          Error message.

    • SigningProfileVersionArn (string) --

      The ARN of the signing profile version.

    • SigningJobArn (string) --

      The ARN of the signing job.

    • Architectures (list) --

      The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

      • (string) --

    • EphemeralStorage (dict) --

      The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

      • Size (integer) --

        The size of the function's /tmp directory.

    • SnapStart (dict) --

      Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

      • ApplyOn (string) --

        When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

      • OptimizationStatus (string) --

        When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

    • RuntimeVersionConfig (dict) --

      The ARN of the runtime and any errors that occured.

      • RuntimeVersionArn (string) --

        The ARN of the runtime version you want the function to use.

      • Error (dict) --

        Error response when Lambda is unable to retrieve the runtime version for a function.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

GetFunction (updated) Link ¶
Changes (response)
{'Configuration': {'Runtime': {'ruby3.2'}}}

Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.

See also: AWS API Documentation

Request Syntax

client.get_function(
    FunctionName='string',
    Qualifier='string'
)
type FunctionName

string

param FunctionName

[REQUIRED]

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

Name formats

  • Function namemy-function (name-only), my-function:v1 (with alias).

  • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function .

  • Partial ARN123456789012: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.

type Qualifier

string

param Qualifier

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

rtype

dict

returns

Response Syntax

{
    'Configuration': {
        'FunctionName': 'string',
        'FunctionArn': 'string',
        'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
        'Role': 'string',
        'Handler': 'string',
        'CodeSize': 123,
        'Description': 'string',
        'Timeout': 123,
        'MemorySize': 123,
        'LastModified': 'string',
        'CodeSha256': 'string',
        'Version': 'string',
        'VpcConfig': {
            'SubnetIds': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ],
            'VpcId': 'string'
        },
        'DeadLetterConfig': {
            'TargetArn': 'string'
        },
        'Environment': {
            'Variables': {
                'string': 'string'
            },
            'Error': {
                'ErrorCode': 'string',
                'Message': 'string'
            }
        },
        'KMSKeyArn': 'string',
        'TracingConfig': {
            'Mode': 'Active'|'PassThrough'
        },
        'MasterArn': 'string',
        'RevisionId': 'string',
        'Layers': [
            {
                'Arn': 'string',
                'CodeSize': 123,
                'SigningProfileVersionArn': 'string',
                'SigningJobArn': 'string'
            },
        ],
        'State': 'Pending'|'Active'|'Inactive'|'Failed',
        'StateReason': 'string',
        'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
        'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
        'LastUpdateStatusReason': 'string',
        'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
        'FileSystemConfigs': [
            {
                'Arn': 'string',
                'LocalMountPath': 'string'
            },
        ],
        'PackageType': 'Zip'|'Image',
        'ImageConfigResponse': {
            'ImageConfig': {
                'EntryPoint': [
                    'string',
                ],
                'Command': [
                    'string',
                ],
                'WorkingDirectory': 'string'
            },
            'Error': {
                'ErrorCode': 'string',
                'Message': 'string'
            }
        },
        'SigningProfileVersionArn': 'string',
        'SigningJobArn': 'string',
        'Architectures': [
            'x86_64'|'arm64',
        ],
        'EphemeralStorage': {
            'Size': 123
        },
        'SnapStart': {
            'ApplyOn': 'PublishedVersions'|'None',
            'OptimizationStatus': 'On'|'Off'
        },
        'RuntimeVersionConfig': {
            'RuntimeVersionArn': 'string',
            'Error': {
                'ErrorCode': 'string',
                'Message': 'string'
            }
        }
    },
    'Code': {
        'RepositoryType': 'string',
        'Location': 'string',
        'ImageUri': 'string',
        'ResolvedImageUri': 'string'
    },
    'Tags': {
        'string': 'string'
    },
    'Concurrency': {
        'ReservedConcurrentExecutions': 123
    }
}

Response Structure

  • (dict) --

    • Configuration (dict) --

      The configuration of the function or version.

      • FunctionName (string) --

        The name of the function.

      • FunctionArn (string) --

        The function's Amazon Resource Name (ARN).

      • Runtime (string) --

        The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

        The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

      • Role (string) --

        The function's execution role.

      • Handler (string) --

        The function that Lambda calls to begin running your function.

      • CodeSize (integer) --

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

      • Description (string) --

        The function's description.

      • Timeout (integer) --

        The amount of time in seconds that Lambda allows a function to run before stopping it.

      • MemorySize (integer) --

        The amount of memory available to the function at runtime.

      • LastModified (string) --

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

      • CodeSha256 (string) --

        The SHA256 hash of the function's deployment package.

      • Version (string) --

        The version of the Lambda function.

      • VpcConfig (dict) --

        The function's networking configuration.

        • SubnetIds (list) --

          A list of VPC subnet IDs.

          • (string) --

        • SecurityGroupIds (list) --

          A list of VPC security group IDs.

          • (string) --

        • VpcId (string) --

          The ID of the VPC.

      • DeadLetterConfig (dict) --

        The function's dead letter queue.

        • TargetArn (string) --

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

      • Environment (dict) --

        The function's environment variables . Omitted from CloudTrail logs.

        • Variables (dict) --

          Environment variable key-value pairs. Omitted from CloudTrail logs.

          • (string) --

            • (string) --

        • Error (dict) --

          Error messages for environment variables that couldn't be applied.

          • ErrorCode (string) --

            The error code.

          • Message (string) --

            The error message.

      • KMSKeyArn (string) --

        The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

      • TracingConfig (dict) --

        The function's X-Ray tracing configuration.

        • Mode (string) --

          The tracing mode.

      • MasterArn (string) --

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

      • RevisionId (string) --

        The latest updated revision of the function or alias.

      • Layers (list) --

        The function's layers .

        • (dict) --

          An Lambda layer .

          • Arn (string) --

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

          • CodeSize (integer) --

            The size of the layer archive in bytes.

          • SigningProfileVersionArn (string) --

            The Amazon Resource Name (ARN) for a signing profile version.

          • SigningJobArn (string) --

            The Amazon Resource Name (ARN) of a signing job.

      • State (string) --

        The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

      • StateReason (string) --

        The reason for the function's current state.

      • StateReasonCode (string) --

        The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

      • LastUpdateStatus (string) --

        The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

      • LastUpdateStatusReason (string) --

        The reason for the last update that was performed on the function.

      • LastUpdateStatusReasonCode (string) --

        The reason code for the last update that was performed on the function.

      • FileSystemConfigs (list) --

        Connection settings for an Amazon EFS file system .

        • (dict) --

          Details about the connection between a Lambda function and an Amazon EFS file system .

          • Arn (string) --

            The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

          • LocalMountPath (string) --

            The path where the function can access the file system, starting with /mnt/ .

      • PackageType (string) --

        The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

      • ImageConfigResponse (dict) --

        The function's image configuration values.

        • ImageConfig (dict) --

          Configuration values that override the container image Dockerfile.

          • EntryPoint (list) --

            Specifies the entry point to their application, which is typically the location of the runtime executable.

            • (string) --

          • Command (list) --

            Specifies parameters that you want to pass in with ENTRYPOINT.

            • (string) --

          • WorkingDirectory (string) --

            Specifies the working directory.

        • Error (dict) --

          Error response to GetFunctionConfiguration .

          • ErrorCode (string) --

            Error code.

          • Message (string) --

            Error message.

      • SigningProfileVersionArn (string) --

        The ARN of the signing profile version.

      • SigningJobArn (string) --

        The ARN of the signing job.

      • Architectures (list) --

        The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

        • (string) --

      • EphemeralStorage (dict) --

        The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

        • Size (integer) --

          The size of the function's /tmp directory.

      • SnapStart (dict) --

        Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

        • ApplyOn (string) --

          When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

        • OptimizationStatus (string) --

          When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

      • RuntimeVersionConfig (dict) --

        The ARN of the runtime and any errors that occured.

        • RuntimeVersionArn (string) --

          The ARN of the runtime version you want the function to use.

        • Error (dict) --

          Error response when Lambda is unable to retrieve the runtime version for a function.

          • ErrorCode (string) --

            The error code.

          • Message (string) --

            The error message.

    • Code (dict) --

      The deployment package of the function or version.

      • RepositoryType (string) --

        The service that's hosting the file.

      • Location (string) --

        A presigned URL that you can use to download the deployment package.

      • ImageUri (string) --

        URI of a container image in the Amazon ECR registry.

      • ResolvedImageUri (string) --

        The resolved URI for the image.

    • Tags (dict) --

      The function's tags .

      • (string) --

        • (string) --

    • Concurrency (dict) --

      The function's reserved concurrency .

      • ReservedConcurrentExecutions (integer) --

        The number of concurrent executions that are reserved for this function. For more information, see Managing Lambda reserved concurrency .

GetFunctionConfiguration (updated) Link ¶
Changes (response)
{'Runtime': {'ruby3.2'}}

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

See also: AWS API Documentation

Request Syntax

client.get_function_configuration(
    FunctionName='string',
    Qualifier='string'
)
type FunctionName

string

param FunctionName

[REQUIRED]

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

Name formats

  • Function namemy-function (name-only), my-function:v1 (with alias).

  • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function .

  • Partial ARN123456789012: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.

type Qualifier

string

param Qualifier

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

rtype

dict

returns

Response Syntax

{
    'FunctionName': 'string',
    'FunctionArn': 'string',
    'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    'Role': 'string',
    'Handler': 'string',
    'CodeSize': 123,
    'Description': 'string',
    'Timeout': 123,
    'MemorySize': 123,
    'LastModified': 'string',
    'CodeSha256': 'string',
    'Version': 'string',
    'VpcConfig': {
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'VpcId': 'string'
    },
    'DeadLetterConfig': {
        'TargetArn': 'string'
    },
    'Environment': {
        'Variables': {
            'string': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'KMSKeyArn': 'string',
    'TracingConfig': {
        'Mode': 'Active'|'PassThrough'
    },
    'MasterArn': 'string',
    'RevisionId': 'string',
    'Layers': [
        {
            'Arn': 'string',
            'CodeSize': 123,
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string'
        },
    ],
    'State': 'Pending'|'Active'|'Inactive'|'Failed',
    'StateReason': 'string',
    'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
    'LastUpdateStatusReason': 'string',
    'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'FileSystemConfigs': [
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    'PackageType': 'Zip'|'Image',
    'ImageConfigResponse': {
        'ImageConfig': {
            'EntryPoint': [
                'string',
            ],
            'Command': [
                'string',
            ],
            'WorkingDirectory': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'SigningProfileVersionArn': 'string',
    'SigningJobArn': 'string',
    'Architectures': [
        'x86_64'|'arm64',
    ],
    'EphemeralStorage': {
        'Size': 123
    },
    'SnapStart': {
        'ApplyOn': 'PublishedVersions'|'None',
        'OptimizationStatus': 'On'|'Off'
    },
    'RuntimeVersionConfig': {
        'RuntimeVersionArn': 'string',
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Details about a function's configuration.

    • FunctionName (string) --

      The name of the function.

    • FunctionArn (string) --

      The function's Amazon Resource Name (ARN).

    • Runtime (string) --

      The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

    • Role (string) --

      The function's execution role.

    • Handler (string) --

      The function that Lambda calls to begin running your function.

    • CodeSize (integer) --

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

    • Description (string) --

      The function's description.

    • Timeout (integer) --

      The amount of time in seconds that Lambda allows a function to run before stopping it.

    • MemorySize (integer) --

      The amount of memory available to the function at runtime.

    • LastModified (string) --

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

    • CodeSha256 (string) --

      The SHA256 hash of the function's deployment package.

    • Version (string) --

      The version of the Lambda function.

    • VpcConfig (dict) --

      The function's networking configuration.

      • SubnetIds (list) --

        A list of VPC subnet IDs.

        • (string) --

      • SecurityGroupIds (list) --

        A list of VPC security group IDs.

        • (string) --

      • VpcId (string) --

        The ID of the VPC.

    • DeadLetterConfig (dict) --

      The function's dead letter queue.

      • TargetArn (string) --

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

    • Environment (dict) --

      The function's environment variables . Omitted from CloudTrail logs.

      • Variables (dict) --

        Environment variable key-value pairs. Omitted from CloudTrail logs.

        • (string) --

          • (string) --

      • Error (dict) --

        Error messages for environment variables that couldn't be applied.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

    • KMSKeyArn (string) --

      The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

    • TracingConfig (dict) --

      The function's X-Ray tracing configuration.

      • Mode (string) --

        The tracing mode.

    • MasterArn (string) --

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

    • RevisionId (string) --

      The latest updated revision of the function or alias.

    • Layers (list) --

      The function's layers .

      • (dict) --

        An Lambda layer .

        • Arn (string) --

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

        • CodeSize (integer) --

          The size of the layer archive in bytes.

        • SigningProfileVersionArn (string) --

          The Amazon Resource Name (ARN) for a signing profile version.

        • SigningJobArn (string) --

          The Amazon Resource Name (ARN) of a signing job.

    • State (string) --

      The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

    • StateReason (string) --

      The reason for the function's current state.

    • StateReasonCode (string) --

      The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

    • LastUpdateStatus (string) --

      The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

    • LastUpdateStatusReason (string) --

      The reason for the last update that was performed on the function.

    • LastUpdateStatusReasonCode (string) --

      The reason code for the last update that was performed on the function.

    • FileSystemConfigs (list) --

      Connection settings for an Amazon EFS file system .

      • (dict) --

        Details about the connection between a Lambda function and an Amazon EFS file system .

        • Arn (string) --

          The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

        • LocalMountPath (string) --

          The path where the function can access the file system, starting with /mnt/ .

    • PackageType (string) --

      The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

    • ImageConfigResponse (dict) --

      The function's image configuration values.

      • ImageConfig (dict) --

        Configuration values that override the container image Dockerfile.

        • EntryPoint (list) --

          Specifies the entry point to their application, which is typically the location of the runtime executable.

          • (string) --

        • Command (list) --

          Specifies parameters that you want to pass in with ENTRYPOINT.

          • (string) --

        • WorkingDirectory (string) --

          Specifies the working directory.

      • Error (dict) --

        Error response to GetFunctionConfiguration .

        • ErrorCode (string) --

          Error code.

        • Message (string) --

          Error message.

    • SigningProfileVersionArn (string) --

      The ARN of the signing profile version.

    • SigningJobArn (string) --

      The ARN of the signing job.

    • Architectures (list) --

      The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

      • (string) --

    • EphemeralStorage (dict) --

      The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

      • Size (integer) --

        The size of the function's /tmp directory.

    • SnapStart (dict) --

      Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

      • ApplyOn (string) --

        When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

      • OptimizationStatus (string) --

        When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

    • RuntimeVersionConfig (dict) --

      The ARN of the runtime and any errors that occured.

      • RuntimeVersionArn (string) --

        The ARN of the runtime version you want the function to use.

      • Error (dict) --

        Error response when Lambda is unable to retrieve the runtime version for a function.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

GetLayerVersion (updated) Link ¶
Changes (response)
{'CompatibleRuntimes': {'ruby3.2'}}

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

See also: AWS API Documentation

Request Syntax

client.get_layer_version(
    LayerName='string',
    VersionNumber=123
)
type LayerName

string

param LayerName

[REQUIRED]

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

type VersionNumber

integer

param VersionNumber

[REQUIRED]

The version number.

rtype

dict

returns

Response Syntax

{
    'Content': {
        'Location': 'string',
        'CodeSha256': 'string',
        'CodeSize': 123,
        'SigningProfileVersionArn': 'string',
        'SigningJobArn': 'string'
    },
    'LayerArn': 'string',
    'LayerVersionArn': 'string',
    'Description': 'string',
    'CreatedDate': 'string',
    'Version': 123,
    'CompatibleRuntimes': [
        'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    ],
    'LicenseInfo': 'string',
    'CompatibleArchitectures': [
        'x86_64'|'arm64',
    ]
}

Response Structure

  • (dict) --

    • Content (dict) --

      Details about the layer version.

      • Location (string) --

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

      • CodeSha256 (string) --

        The SHA-256 hash of the layer archive.

      • CodeSize (integer) --

        The size of the layer archive in bytes.

      • SigningProfileVersionArn (string) --

        The Amazon Resource Name (ARN) for a signing profile version.

      • SigningJobArn (string) --

        The Amazon Resource Name (ARN) of a signing job.

    • LayerArn (string) --

      The ARN of the layer.

    • LayerVersionArn (string) --

      The ARN of the layer version.

    • Description (string) --

      The description of the version.

    • CreatedDate (string) --

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

    • Version (integer) --

      The version number.

    • CompatibleRuntimes (list) --

      The layer's compatible runtimes.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

      • (string) --

    • LicenseInfo (string) --

      The layer's software license.

    • CompatibleArchitectures (list) --

      A list of compatible instruction set architectures .

      • (string) --

GetLayerVersionByArn (updated) Link ¶
Changes (response)
{'CompatibleRuntimes': {'ruby3.2'}}

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

See also: AWS API Documentation

Request Syntax

client.get_layer_version_by_arn(
    Arn='string'
)
type Arn

string

param Arn

[REQUIRED]

The ARN of the layer version.

rtype

dict

returns

Response Syntax

{
    'Content': {
        'Location': 'string',
        'CodeSha256': 'string',
        'CodeSize': 123,
        'SigningProfileVersionArn': 'string',
        'SigningJobArn': 'string'
    },
    'LayerArn': 'string',
    'LayerVersionArn': 'string',
    'Description': 'string',
    'CreatedDate': 'string',
    'Version': 123,
    'CompatibleRuntimes': [
        'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    ],
    'LicenseInfo': 'string',
    'CompatibleArchitectures': [
        'x86_64'|'arm64',
    ]
}

Response Structure

  • (dict) --

    • Content (dict) --

      Details about the layer version.

      • Location (string) --

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

      • CodeSha256 (string) --

        The SHA-256 hash of the layer archive.

      • CodeSize (integer) --

        The size of the layer archive in bytes.

      • SigningProfileVersionArn (string) --

        The Amazon Resource Name (ARN) for a signing profile version.

      • SigningJobArn (string) --

        The Amazon Resource Name (ARN) of a signing job.

    • LayerArn (string) --

      The ARN of the layer.

    • LayerVersionArn (string) --

      The ARN of the layer version.

    • Description (string) --

      The description of the version.

    • CreatedDate (string) --

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

    • Version (integer) --

      The version number.

    • CompatibleRuntimes (list) --

      The layer's compatible runtimes.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

      • (string) --

    • LicenseInfo (string) --

      The layer's software license.

    • CompatibleArchitectures (list) --

      A list of compatible instruction set architectures .

      • (string) --

ListFunctions (updated) Link ¶
Changes (response)
{'Functions': {'Runtime': {'ruby3.2'}}}

Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.

Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version.

Note

The ListFunctions operation returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode, RuntimeVersionConfig) for a function or version, use GetFunction .

See also: AWS API Documentation

Request Syntax

client.list_functions(
    MasterRegion='string',
    FunctionVersion='ALL',
    Marker='string',
    MaxItems=123
)
type MasterRegion

string

param MasterRegion

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

type FunctionVersion

string

param FunctionVersion

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

type Marker

string

param Marker

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

type MaxItems

integer

param MaxItems

The maximum number of functions to return in the response. Note that ListFunctions returns a maximum of 50 items in each response, even if you set the number higher.

rtype

dict

returns

Response Syntax

{
    'NextMarker': 'string',
    'Functions': [
        {
            'FunctionName': 'string',
            'FunctionArn': 'string',
            'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
            'Role': 'string',
            'Handler': 'string',
            'CodeSize': 123,
            'Description': 'string',
            'Timeout': 123,
            'MemorySize': 123,
            'LastModified': 'string',
            'CodeSha256': 'string',
            'Version': 'string',
            'VpcConfig': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ],
                'VpcId': 'string'
            },
            'DeadLetterConfig': {
                'TargetArn': 'string'
            },
            'Environment': {
                'Variables': {
                    'string': 'string'
                },
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            },
            'KMSKeyArn': 'string',
            'TracingConfig': {
                'Mode': 'Active'|'PassThrough'
            },
            'MasterArn': 'string',
            'RevisionId': 'string',
            'Layers': [
                {
                    'Arn': 'string',
                    'CodeSize': 123,
                    'SigningProfileVersionArn': 'string',
                    'SigningJobArn': 'string'
                },
            ],
            'State': 'Pending'|'Active'|'Inactive'|'Failed',
            'StateReason': 'string',
            'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
            'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
            'LastUpdateStatusReason': 'string',
            'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
            'FileSystemConfigs': [
                {
                    'Arn': 'string',
                    'LocalMountPath': 'string'
                },
            ],
            'PackageType': 'Zip'|'Image',
            'ImageConfigResponse': {
                'ImageConfig': {
                    'EntryPoint': [
                        'string',
                    ],
                    'Command': [
                        'string',
                    ],
                    'WorkingDirectory': 'string'
                },
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            },
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string',
            'Architectures': [
                'x86_64'|'arm64',
            ],
            'EphemeralStorage': {
                'Size': 123
            },
            'SnapStart': {
                'ApplyOn': 'PublishedVersions'|'None',
                'OptimizationStatus': 'On'|'Off'
            },
            'RuntimeVersionConfig': {
                'RuntimeVersionArn': 'string',
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            }
        },
    ]
}

Response Structure

  • (dict) --

    A list of Lambda functions.

    • NextMarker (string) --

      The pagination token that's included if more results are available.

    • Functions (list) --

      A list of Lambda functions.

      • (dict) --

        Details about a function's configuration.

        • FunctionName (string) --

          The name of the function.

        • FunctionArn (string) --

          The function's Amazon Resource Name (ARN).

        • Runtime (string) --

          The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

          The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

        • Role (string) --

          The function's execution role.

        • Handler (string) --

          The function that Lambda calls to begin running your function.

        • CodeSize (integer) --

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

        • Description (string) --

          The function's description.

        • Timeout (integer) --

          The amount of time in seconds that Lambda allows a function to run before stopping it.

        • MemorySize (integer) --

          The amount of memory available to the function at runtime.

        • LastModified (string) --

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

        • CodeSha256 (string) --

          The SHA256 hash of the function's deployment package.

        • Version (string) --

          The version of the Lambda function.

        • VpcConfig (dict) --

          The function's networking configuration.

          • SubnetIds (list) --

            A list of VPC subnet IDs.

            • (string) --

          • SecurityGroupIds (list) --

            A list of VPC security group IDs.

            • (string) --

          • VpcId (string) --

            The ID of the VPC.

        • DeadLetterConfig (dict) --

          The function's dead letter queue.

          • TargetArn (string) --

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

        • Environment (dict) --

          The function's environment variables . Omitted from CloudTrail logs.

          • Variables (dict) --

            Environment variable key-value pairs. Omitted from CloudTrail logs.

            • (string) --

              • (string) --

          • Error (dict) --

            Error messages for environment variables that couldn't be applied.

            • ErrorCode (string) --

              The error code.

            • Message (string) --

              The error message.

        • KMSKeyArn (string) --

          The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

        • TracingConfig (dict) --

          The function's X-Ray tracing configuration.

          • Mode (string) --

            The tracing mode.

        • MasterArn (string) --

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

        • RevisionId (string) --

          The latest updated revision of the function or alias.

        • Layers (list) --

          The function's layers .

          • (dict) --

            An Lambda layer .

            • Arn (string) --

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

            • CodeSize (integer) --

              The size of the layer archive in bytes.

            • SigningProfileVersionArn (string) --

              The Amazon Resource Name (ARN) for a signing profile version.

            • SigningJobArn (string) --

              The Amazon Resource Name (ARN) of a signing job.

        • State (string) --

          The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

        • StateReason (string) --

          The reason for the function's current state.

        • StateReasonCode (string) --

          The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

        • LastUpdateStatus (string) --

          The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

        • LastUpdateStatusReason (string) --

          The reason for the last update that was performed on the function.

        • LastUpdateStatusReasonCode (string) --

          The reason code for the last update that was performed on the function.

        • FileSystemConfigs (list) --

          Connection settings for an Amazon EFS file system .

          • (dict) --

            Details about the connection between a Lambda function and an Amazon EFS file system .

            • Arn (string) --

              The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

            • LocalMountPath (string) --

              The path where the function can access the file system, starting with /mnt/ .

        • PackageType (string) --

          The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

        • ImageConfigResponse (dict) --

          The function's image configuration values.

          • ImageConfig (dict) --

            Configuration values that override the container image Dockerfile.

            • EntryPoint (list) --

              Specifies the entry point to their application, which is typically the location of the runtime executable.

              • (string) --

            • Command (list) --

              Specifies parameters that you want to pass in with ENTRYPOINT.

              • (string) --

            • WorkingDirectory (string) --

              Specifies the working directory.

          • Error (dict) --

            Error response to GetFunctionConfiguration .

            • ErrorCode (string) --

              Error code.

            • Message (string) --

              Error message.

        • SigningProfileVersionArn (string) --

          The ARN of the signing profile version.

        • SigningJobArn (string) --

          The ARN of the signing job.

        • Architectures (list) --

          The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

          • (string) --

        • EphemeralStorage (dict) --

          The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

          • Size (integer) --

            The size of the function's /tmp directory.

        • SnapStart (dict) --

          Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

          • ApplyOn (string) --

            When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

          • OptimizationStatus (string) --

            When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

        • RuntimeVersionConfig (dict) --

          The ARN of the runtime and any errors that occured.

          • RuntimeVersionArn (string) --

            The ARN of the runtime version you want the function to use.

          • Error (dict) --

            Error response when Lambda is unable to retrieve the runtime version for a function.

            • ErrorCode (string) --

              The error code.

            • Message (string) --

              The error message.

ListLayerVersions (updated) Link ¶
Changes (request, response)
Request
{'CompatibleRuntime': {'ruby3.2'}}
Response
{'LayerVersions': {'CompatibleRuntimes': {'ruby3.2'}}}

Lists the versions of an 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. Specify a compatible architecture to include only layer versions that are compatible with that architecture.

See also: AWS API Documentation

Request Syntax

client.list_layer_versions(
    CompatibleRuntime='nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    LayerName='string',
    Marker='string',
    MaxItems=123,
    CompatibleArchitecture='x86_64'|'arm64'
)
type CompatibleRuntime

string

param CompatibleRuntime

A runtime identifier. For example, go1.x .

The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

type LayerName

string

param LayerName

[REQUIRED]

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

type Marker

string

param Marker

A pagination token returned by a previous call.

type MaxItems

integer

param MaxItems

The maximum number of versions to return.

type CompatibleArchitecture

string

param CompatibleArchitecture

The compatible instruction set architecture .

rtype

dict

returns

Response Syntax

{
    'NextMarker': 'string',
    'LayerVersions': [
        {
            'LayerVersionArn': 'string',
            'Version': 123,
            'Description': 'string',
            'CreatedDate': 'string',
            'CompatibleRuntimes': [
                'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
            ],
            'LicenseInfo': 'string',
            'CompatibleArchitectures': [
                'x86_64'|'arm64',
            ]
        },
    ]
}

Response Structure

  • (dict) --

    • NextMarker (string) --

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

    • LayerVersions (list) --

      A list of versions.

      • (dict) --

        Details about a version of an Lambda layer .

        • LayerVersionArn (string) --

          The ARN of the layer version.

        • Version (integer) --

          The version number.

        • Description (string) --

          The description of the version.

        • CreatedDate (string) --

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

        • CompatibleRuntimes (list) --

          The layer's compatible runtimes.

          The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

          • (string) --

        • LicenseInfo (string) --

          The layer's open-source license.

        • CompatibleArchitectures (list) --

          A list of compatible instruction set architectures .

          • (string) --

ListLayers (updated) Link ¶
Changes (request, response)
Request
{'CompatibleRuntime': {'ruby3.2'}}
Response
{'Layers': {'LatestMatchingVersion': {'CompatibleRuntimes': {'ruby3.2'}}}}

Lists 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. Specify a compatible architecture to include only layers that are compatible with that instruction set architecture .

See also: AWS API Documentation

Request Syntax

client.list_layers(
    CompatibleRuntime='nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    Marker='string',
    MaxItems=123,
    CompatibleArchitecture='x86_64'|'arm64'
)
type CompatibleRuntime

string

param CompatibleRuntime

A runtime identifier. For example, go1.x .

The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

type Marker

string

param Marker

A pagination token returned by a previous call.

type MaxItems

integer

param MaxItems

The maximum number of layers to return.

type CompatibleArchitecture

string

param CompatibleArchitecture

The compatible instruction set architecture .

rtype

dict

returns

Response Syntax

{
    'NextMarker': 'string',
    'Layers': [
        {
            'LayerName': 'string',
            'LayerArn': 'string',
            'LatestMatchingVersion': {
                'LayerVersionArn': 'string',
                'Version': 123,
                'Description': 'string',
                'CreatedDate': 'string',
                'CompatibleRuntimes': [
                    'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
                ],
                'LicenseInfo': 'string',
                'CompatibleArchitectures': [
                    'x86_64'|'arm64',
                ]
            }
        },
    ]
}

Response Structure

  • (dict) --

    • NextMarker (string) --

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

    • Layers (list) --

      A list of function layers.

      • (dict) --

        Details about an Lambda layer .

        • LayerName (string) --

          The name of the layer.

        • LayerArn (string) --

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

        • LatestMatchingVersion (dict) --

          The newest version of the layer.

          • LayerVersionArn (string) --

            The ARN of the layer version.

          • Version (integer) --

            The version number.

          • Description (string) --

            The description of the version.

          • CreatedDate (string) --

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

          • CompatibleRuntimes (list) --

            The layer's compatible runtimes.

            The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

            • (string) --

          • LicenseInfo (string) --

            The layer's open-source license.

          • CompatibleArchitectures (list) --

            A list of compatible instruction set architectures .

            • (string) --

ListVersionsByFunction (updated) Link ¶
Changes (response)
{'Versions': {'Runtime': {'ruby3.2'}}}

Returns a list of versions , with the version-specific configuration of each. Lambda returns up to 50 versions per call.

See also: AWS API Documentation

Request Syntax

client.list_versions_by_function(
    FunctionName='string',
    Marker='string',
    MaxItems=123
)
type FunctionName

string

param FunctionName

[REQUIRED]

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.

type Marker

string

param Marker

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

type MaxItems

integer

param MaxItems

The maximum number of versions to return. Note that ListVersionsByFunction returns a maximum of 50 items in each response, even if you set the number higher.

rtype

dict

returns

Response Syntax

{
    'NextMarker': 'string',
    'Versions': [
        {
            'FunctionName': 'string',
            'FunctionArn': 'string',
            'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
            'Role': 'string',
            'Handler': 'string',
            'CodeSize': 123,
            'Description': 'string',
            'Timeout': 123,
            'MemorySize': 123,
            'LastModified': 'string',
            'CodeSha256': 'string',
            'Version': 'string',
            'VpcConfig': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ],
                'VpcId': 'string'
            },
            'DeadLetterConfig': {
                'TargetArn': 'string'
            },
            'Environment': {
                'Variables': {
                    'string': 'string'
                },
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            },
            'KMSKeyArn': 'string',
            'TracingConfig': {
                'Mode': 'Active'|'PassThrough'
            },
            'MasterArn': 'string',
            'RevisionId': 'string',
            'Layers': [
                {
                    'Arn': 'string',
                    'CodeSize': 123,
                    'SigningProfileVersionArn': 'string',
                    'SigningJobArn': 'string'
                },
            ],
            'State': 'Pending'|'Active'|'Inactive'|'Failed',
            'StateReason': 'string',
            'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
            'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
            'LastUpdateStatusReason': 'string',
            'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
            'FileSystemConfigs': [
                {
                    'Arn': 'string',
                    'LocalMountPath': 'string'
                },
            ],
            'PackageType': 'Zip'|'Image',
            'ImageConfigResponse': {
                'ImageConfig': {
                    'EntryPoint': [
                        'string',
                    ],
                    'Command': [
                        'string',
                    ],
                    'WorkingDirectory': 'string'
                },
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            },
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string',
            'Architectures': [
                'x86_64'|'arm64',
            ],
            'EphemeralStorage': {
                'Size': 123
            },
            'SnapStart': {
                'ApplyOn': 'PublishedVersions'|'None',
                'OptimizationStatus': 'On'|'Off'
            },
            'RuntimeVersionConfig': {
                'RuntimeVersionArn': 'string',
                'Error': {
                    'ErrorCode': 'string',
                    'Message': 'string'
                }
            }
        },
    ]
}

Response Structure

  • (dict) --

    • NextMarker (string) --

      The pagination token that's included if more results are available.

    • Versions (list) --

      A list of Lambda function versions.

      • (dict) --

        Details about a function's configuration.

        • FunctionName (string) --

          The name of the function.

        • FunctionArn (string) --

          The function's Amazon Resource Name (ARN).

        • Runtime (string) --

          The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

          The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

        • Role (string) --

          The function's execution role.

        • Handler (string) --

          The function that Lambda calls to begin running your function.

        • CodeSize (integer) --

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

        • Description (string) --

          The function's description.

        • Timeout (integer) --

          The amount of time in seconds that Lambda allows a function to run before stopping it.

        • MemorySize (integer) --

          The amount of memory available to the function at runtime.

        • LastModified (string) --

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

        • CodeSha256 (string) --

          The SHA256 hash of the function's deployment package.

        • Version (string) --

          The version of the Lambda function.

        • VpcConfig (dict) --

          The function's networking configuration.

          • SubnetIds (list) --

            A list of VPC subnet IDs.

            • (string) --

          • SecurityGroupIds (list) --

            A list of VPC security group IDs.

            • (string) --

          • VpcId (string) --

            The ID of the VPC.

        • DeadLetterConfig (dict) --

          The function's dead letter queue.

          • TargetArn (string) --

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

        • Environment (dict) --

          The function's environment variables . Omitted from CloudTrail logs.

          • Variables (dict) --

            Environment variable key-value pairs. Omitted from CloudTrail logs.

            • (string) --

              • (string) --

          • Error (dict) --

            Error messages for environment variables that couldn't be applied.

            • ErrorCode (string) --

              The error code.

            • Message (string) --

              The error message.

        • KMSKeyArn (string) --

          The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

        • TracingConfig (dict) --

          The function's X-Ray tracing configuration.

          • Mode (string) --

            The tracing mode.

        • MasterArn (string) --

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

        • RevisionId (string) --

          The latest updated revision of the function or alias.

        • Layers (list) --

          The function's layers .

          • (dict) --

            An Lambda layer .

            • Arn (string) --

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

            • CodeSize (integer) --

              The size of the layer archive in bytes.

            • SigningProfileVersionArn (string) --

              The Amazon Resource Name (ARN) for a signing profile version.

            • SigningJobArn (string) --

              The Amazon Resource Name (ARN) of a signing job.

        • State (string) --

          The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

        • StateReason (string) --

          The reason for the function's current state.

        • StateReasonCode (string) --

          The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

        • LastUpdateStatus (string) --

          The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

        • LastUpdateStatusReason (string) --

          The reason for the last update that was performed on the function.

        • LastUpdateStatusReasonCode (string) --

          The reason code for the last update that was performed on the function.

        • FileSystemConfigs (list) --

          Connection settings for an Amazon EFS file system .

          • (dict) --

            Details about the connection between a Lambda function and an Amazon EFS file system .

            • Arn (string) --

              The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

            • LocalMountPath (string) --

              The path where the function can access the file system, starting with /mnt/ .

        • PackageType (string) --

          The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

        • ImageConfigResponse (dict) --

          The function's image configuration values.

          • ImageConfig (dict) --

            Configuration values that override the container image Dockerfile.

            • EntryPoint (list) --

              Specifies the entry point to their application, which is typically the location of the runtime executable.

              • (string) --

            • Command (list) --

              Specifies parameters that you want to pass in with ENTRYPOINT.

              • (string) --

            • WorkingDirectory (string) --

              Specifies the working directory.

          • Error (dict) --

            Error response to GetFunctionConfiguration .

            • ErrorCode (string) --

              Error code.

            • Message (string) --

              Error message.

        • SigningProfileVersionArn (string) --

          The ARN of the signing profile version.

        • SigningJobArn (string) --

          The ARN of the signing job.

        • Architectures (list) --

          The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

          • (string) --

        • EphemeralStorage (dict) --

          The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

          • Size (integer) --

            The size of the function's /tmp directory.

        • SnapStart (dict) --

          Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

          • ApplyOn (string) --

            When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

          • OptimizationStatus (string) --

            When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

        • RuntimeVersionConfig (dict) --

          The ARN of the runtime and any errors that occured.

          • RuntimeVersionArn (string) --

            The ARN of the runtime version you want the function to use.

          • Error (dict) --

            Error response when Lambda is unable to retrieve the runtime version for a function.

            • ErrorCode (string) --

              The error code.

            • Message (string) --

              The error message.

PublishLayerVersion (updated) Link ¶
Changes (both)
{'CompatibleRuntimes': {'ruby3.2'}}

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

Add layers to your function with CreateFunction or UpdateFunctionConfiguration .

See also: AWS API Documentation

Request Syntax

client.publish_layer_version(
    LayerName='string',
    Description='string',
    Content={
        'S3Bucket': 'string',
        'S3Key': 'string',
        'S3ObjectVersion': 'string',
        'ZipFile': b'bytes'
    },
    CompatibleRuntimes=[
        'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    ],
    LicenseInfo='string',
    CompatibleArchitectures=[
        'x86_64'|'arm64',
    ]
)
type LayerName

string

param LayerName

[REQUIRED]

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

type Description

string

param Description

The description of the version.

type Content

dict

param Content

[REQUIRED]

The function layer archive.

  • S3Bucket (string) --

    The Amazon S3 bucket of the layer archive.

  • S3Key (string) --

    The Amazon S3 key of the layer archive.

  • S3ObjectVersion (string) --

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

  • ZipFile (bytes) --

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

type CompatibleRuntimes

list

param CompatibleRuntimes

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

The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

  • (string) --

type LicenseInfo

string

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

type CompatibleArchitectures

list

param CompatibleArchitectures

A list of compatible instruction set architectures .

  • (string) --

rtype

dict

returns

Response Syntax

{
    'Content': {
        'Location': 'string',
        'CodeSha256': 'string',
        'CodeSize': 123,
        'SigningProfileVersionArn': 'string',
        'SigningJobArn': 'string'
    },
    'LayerArn': 'string',
    'LayerVersionArn': 'string',
    'Description': 'string',
    'CreatedDate': 'string',
    'Version': 123,
    'CompatibleRuntimes': [
        'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    ],
    'LicenseInfo': 'string',
    'CompatibleArchitectures': [
        'x86_64'|'arm64',
    ]
}

Response Structure

  • (dict) --

    • Content (dict) --

      Details about the layer version.

      • Location (string) --

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

      • CodeSha256 (string) --

        The SHA-256 hash of the layer archive.

      • CodeSize (integer) --

        The size of the layer archive in bytes.

      • SigningProfileVersionArn (string) --

        The Amazon Resource Name (ARN) for a signing profile version.

      • SigningJobArn (string) --

        The Amazon Resource Name (ARN) of a signing job.

    • LayerArn (string) --

      The ARN of the layer.

    • LayerVersionArn (string) --

      The ARN of the layer version.

    • Description (string) --

      The description of the version.

    • CreatedDate (string) --

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

    • Version (integer) --

      The version number.

    • CompatibleRuntimes (list) --

      The layer's compatible runtimes.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

      • (string) --

    • LicenseInfo (string) --

      The layer's software license.

    • CompatibleArchitectures (list) --

      A list of compatible instruction set architectures .

      • (string) --

PublishVersion (updated) Link ¶
Changes (response)
{'Runtime': {'ruby3.2'}}

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.

Lambda doesn't publish a version if the function's configuration and code haven't changed since the last version. Use UpdateFunctionCode or UpdateFunctionConfiguration to update the function before publishing a version.

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

See also: AWS API Documentation

Request Syntax

client.publish_version(
    FunctionName='string',
    CodeSha256='string',
    Description='string',
    RevisionId='string'
)
type FunctionName

string

param FunctionName

[REQUIRED]

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.

type CodeSha256

string

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

type Description

string

param Description

A description for the version to override the description in the function configuration.

type RevisionId

string

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

rtype

dict

returns

Response Syntax

{
    'FunctionName': 'string',
    'FunctionArn': 'string',
    'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    'Role': 'string',
    'Handler': 'string',
    'CodeSize': 123,
    'Description': 'string',
    'Timeout': 123,
    'MemorySize': 123,
    'LastModified': 'string',
    'CodeSha256': 'string',
    'Version': 'string',
    'VpcConfig': {
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'VpcId': 'string'
    },
    'DeadLetterConfig': {
        'TargetArn': 'string'
    },
    'Environment': {
        'Variables': {
            'string': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'KMSKeyArn': 'string',
    'TracingConfig': {
        'Mode': 'Active'|'PassThrough'
    },
    'MasterArn': 'string',
    'RevisionId': 'string',
    'Layers': [
        {
            'Arn': 'string',
            'CodeSize': 123,
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string'
        },
    ],
    'State': 'Pending'|'Active'|'Inactive'|'Failed',
    'StateReason': 'string',
    'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
    'LastUpdateStatusReason': 'string',
    'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'FileSystemConfigs': [
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    'PackageType': 'Zip'|'Image',
    'ImageConfigResponse': {
        'ImageConfig': {
            'EntryPoint': [
                'string',
            ],
            'Command': [
                'string',
            ],
            'WorkingDirectory': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'SigningProfileVersionArn': 'string',
    'SigningJobArn': 'string',
    'Architectures': [
        'x86_64'|'arm64',
    ],
    'EphemeralStorage': {
        'Size': 123
    },
    'SnapStart': {
        'ApplyOn': 'PublishedVersions'|'None',
        'OptimizationStatus': 'On'|'Off'
    },
    'RuntimeVersionConfig': {
        'RuntimeVersionArn': 'string',
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Details about a function's configuration.

    • FunctionName (string) --

      The name of the function.

    • FunctionArn (string) --

      The function's Amazon Resource Name (ARN).

    • Runtime (string) --

      The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

    • Role (string) --

      The function's execution role.

    • Handler (string) --

      The function that Lambda calls to begin running your function.

    • CodeSize (integer) --

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

    • Description (string) --

      The function's description.

    • Timeout (integer) --

      The amount of time in seconds that Lambda allows a function to run before stopping it.

    • MemorySize (integer) --

      The amount of memory available to the function at runtime.

    • LastModified (string) --

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

    • CodeSha256 (string) --

      The SHA256 hash of the function's deployment package.

    • Version (string) --

      The version of the Lambda function.

    • VpcConfig (dict) --

      The function's networking configuration.

      • SubnetIds (list) --

        A list of VPC subnet IDs.

        • (string) --

      • SecurityGroupIds (list) --

        A list of VPC security group IDs.

        • (string) --

      • VpcId (string) --

        The ID of the VPC.

    • DeadLetterConfig (dict) --

      The function's dead letter queue.

      • TargetArn (string) --

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

    • Environment (dict) --

      The function's environment variables . Omitted from CloudTrail logs.

      • Variables (dict) --

        Environment variable key-value pairs. Omitted from CloudTrail logs.

        • (string) --

          • (string) --

      • Error (dict) --

        Error messages for environment variables that couldn't be applied.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

    • KMSKeyArn (string) --

      The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

    • TracingConfig (dict) --

      The function's X-Ray tracing configuration.

      • Mode (string) --

        The tracing mode.

    • MasterArn (string) --

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

    • RevisionId (string) --

      The latest updated revision of the function or alias.

    • Layers (list) --

      The function's layers .

      • (dict) --

        An Lambda layer .

        • Arn (string) --

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

        • CodeSize (integer) --

          The size of the layer archive in bytes.

        • SigningProfileVersionArn (string) --

          The Amazon Resource Name (ARN) for a signing profile version.

        • SigningJobArn (string) --

          The Amazon Resource Name (ARN) of a signing job.

    • State (string) --

      The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

    • StateReason (string) --

      The reason for the function's current state.

    • StateReasonCode (string) --

      The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

    • LastUpdateStatus (string) --

      The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

    • LastUpdateStatusReason (string) --

      The reason for the last update that was performed on the function.

    • LastUpdateStatusReasonCode (string) --

      The reason code for the last update that was performed on the function.

    • FileSystemConfigs (list) --

      Connection settings for an Amazon EFS file system .

      • (dict) --

        Details about the connection between a Lambda function and an Amazon EFS file system .

        • Arn (string) --

          The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

        • LocalMountPath (string) --

          The path where the function can access the file system, starting with /mnt/ .

    • PackageType (string) --

      The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

    • ImageConfigResponse (dict) --

      The function's image configuration values.

      • ImageConfig (dict) --

        Configuration values that override the container image Dockerfile.

        • EntryPoint (list) --

          Specifies the entry point to their application, which is typically the location of the runtime executable.

          • (string) --

        • Command (list) --

          Specifies parameters that you want to pass in with ENTRYPOINT.

          • (string) --

        • WorkingDirectory (string) --

          Specifies the working directory.

      • Error (dict) --

        Error response to GetFunctionConfiguration .

        • ErrorCode (string) --

          Error code.

        • Message (string) --

          Error message.

    • SigningProfileVersionArn (string) --

      The ARN of the signing profile version.

    • SigningJobArn (string) --

      The ARN of the signing job.

    • Architectures (list) --

      The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

      • (string) --

    • EphemeralStorage (dict) --

      The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

      • Size (integer) --

        The size of the function's /tmp directory.

    • SnapStart (dict) --

      Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

      • ApplyOn (string) --

        When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

      • OptimizationStatus (string) --

        When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

    • RuntimeVersionConfig (dict) --

      The ARN of the runtime and any errors that occured.

      • RuntimeVersionArn (string) --

        The ARN of the runtime version you want the function to use.

      • Error (dict) --

        Error response when Lambda is unable to retrieve the runtime version for a function.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

UpdateFunctionCode (updated) Link ¶
Changes (response)
{'Runtime': {'ruby3.2'}}

Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see Configuring code signing for Lambda .

If the function's package type is Image , then you must specify the code package in ImageUri as the URI of a container image in the Amazon ECR registry.

If the function's package type is Zip , then you must specify the deployment package as a .zip file archive . Enter the Amazon S3 bucket and key of the code .zip file location. You can also provide the function code inline using the ZipFile field.

The code in the deployment package must be compatible with the target instruction set architecture of the function (x86-64 or arm64 ).

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

Note

For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.

See also: AWS API Documentation

Request Syntax

client.update_function_code(
    FunctionName='string',
    ZipFile=b'bytes',
    S3Bucket='string',
    S3Key='string',
    S3ObjectVersion='string',
    ImageUri='string',
    Publish=True|False,
    DryRun=True|False,
    RevisionId='string',
    Architectures=[
        'x86_64'|'arm64',
    ]
)
type FunctionName

string

param FunctionName

[REQUIRED]

The name of the Lambda function.

Name formats

  • Function namemy-function .

  • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function .

  • Partial ARN123456789012: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.

type ZipFile

bytes

param ZipFile

The base64-encoded contents of the deployment package. Amazon Web Services SDK and CLI clients handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.

type S3Bucket

string

param S3Bucket

An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account. Use only with a function defined with a .zip file archive deployment package.

type S3Key

string

param S3Key

The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.

type S3ObjectVersion

string

param S3ObjectVersion

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

type ImageUri

string

param ImageUri

URI of a container image in the Amazon ECR registry. Do not use for a function defined with a .zip file archive.

type Publish

boolean

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

type DryRun

boolean

param DryRun

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

type RevisionId

string

param RevisionId

Update the function only 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.

type Architectures

list

param Architectures

The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64). The default value is x86_64 .

  • (string) --

rtype

dict

returns

Response Syntax

{
    'FunctionName': 'string',
    'FunctionArn': 'string',
    'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    'Role': 'string',
    'Handler': 'string',
    'CodeSize': 123,
    'Description': 'string',
    'Timeout': 123,
    'MemorySize': 123,
    'LastModified': 'string',
    'CodeSha256': 'string',
    'Version': 'string',
    'VpcConfig': {
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'VpcId': 'string'
    },
    'DeadLetterConfig': {
        'TargetArn': 'string'
    },
    'Environment': {
        'Variables': {
            'string': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'KMSKeyArn': 'string',
    'TracingConfig': {
        'Mode': 'Active'|'PassThrough'
    },
    'MasterArn': 'string',
    'RevisionId': 'string',
    'Layers': [
        {
            'Arn': 'string',
            'CodeSize': 123,
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string'
        },
    ],
    'State': 'Pending'|'Active'|'Inactive'|'Failed',
    'StateReason': 'string',
    'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
    'LastUpdateStatusReason': 'string',
    'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'FileSystemConfigs': [
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    'PackageType': 'Zip'|'Image',
    'ImageConfigResponse': {
        'ImageConfig': {
            'EntryPoint': [
                'string',
            ],
            'Command': [
                'string',
            ],
            'WorkingDirectory': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'SigningProfileVersionArn': 'string',
    'SigningJobArn': 'string',
    'Architectures': [
        'x86_64'|'arm64',
    ],
    'EphemeralStorage': {
        'Size': 123
    },
    'SnapStart': {
        'ApplyOn': 'PublishedVersions'|'None',
        'OptimizationStatus': 'On'|'Off'
    },
    'RuntimeVersionConfig': {
        'RuntimeVersionArn': 'string',
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Details about a function's configuration.

    • FunctionName (string) --

      The name of the function.

    • FunctionArn (string) --

      The function's Amazon Resource Name (ARN).

    • Runtime (string) --

      The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

    • Role (string) --

      The function's execution role.

    • Handler (string) --

      The function that Lambda calls to begin running your function.

    • CodeSize (integer) --

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

    • Description (string) --

      The function's description.

    • Timeout (integer) --

      The amount of time in seconds that Lambda allows a function to run before stopping it.

    • MemorySize (integer) --

      The amount of memory available to the function at runtime.

    • LastModified (string) --

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

    • CodeSha256 (string) --

      The SHA256 hash of the function's deployment package.

    • Version (string) --

      The version of the Lambda function.

    • VpcConfig (dict) --

      The function's networking configuration.

      • SubnetIds (list) --

        A list of VPC subnet IDs.

        • (string) --

      • SecurityGroupIds (list) --

        A list of VPC security group IDs.

        • (string) --

      • VpcId (string) --

        The ID of the VPC.

    • DeadLetterConfig (dict) --

      The function's dead letter queue.

      • TargetArn (string) --

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

    • Environment (dict) --

      The function's environment variables . Omitted from CloudTrail logs.

      • Variables (dict) --

        Environment variable key-value pairs. Omitted from CloudTrail logs.

        • (string) --

          • (string) --

      • Error (dict) --

        Error messages for environment variables that couldn't be applied.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

    • KMSKeyArn (string) --

      The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

    • TracingConfig (dict) --

      The function's X-Ray tracing configuration.

      • Mode (string) --

        The tracing mode.

    • MasterArn (string) --

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

    • RevisionId (string) --

      The latest updated revision of the function or alias.

    • Layers (list) --

      The function's layers .

      • (dict) --

        An Lambda layer .

        • Arn (string) --

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

        • CodeSize (integer) --

          The size of the layer archive in bytes.

        • SigningProfileVersionArn (string) --

          The Amazon Resource Name (ARN) for a signing profile version.

        • SigningJobArn (string) --

          The Amazon Resource Name (ARN) of a signing job.

    • State (string) --

      The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

    • StateReason (string) --

      The reason for the function's current state.

    • StateReasonCode (string) --

      The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

    • LastUpdateStatus (string) --

      The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

    • LastUpdateStatusReason (string) --

      The reason for the last update that was performed on the function.

    • LastUpdateStatusReasonCode (string) --

      The reason code for the last update that was performed on the function.

    • FileSystemConfigs (list) --

      Connection settings for an Amazon EFS file system .

      • (dict) --

        Details about the connection between a Lambda function and an Amazon EFS file system .

        • Arn (string) --

          The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

        • LocalMountPath (string) --

          The path where the function can access the file system, starting with /mnt/ .

    • PackageType (string) --

      The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

    • ImageConfigResponse (dict) --

      The function's image configuration values.

      • ImageConfig (dict) --

        Configuration values that override the container image Dockerfile.

        • EntryPoint (list) --

          Specifies the entry point to their application, which is typically the location of the runtime executable.

          • (string) --

        • Command (list) --

          Specifies parameters that you want to pass in with ENTRYPOINT.

          • (string) --

        • WorkingDirectory (string) --

          Specifies the working directory.

      • Error (dict) --

        Error response to GetFunctionConfiguration .

        • ErrorCode (string) --

          Error code.

        • Message (string) --

          Error message.

    • SigningProfileVersionArn (string) --

      The ARN of the signing profile version.

    • SigningJobArn (string) --

      The ARN of the signing job.

    • Architectures (list) --

      The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

      • (string) --

    • EphemeralStorage (dict) --

      The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

      • Size (integer) --

        The size of the function's /tmp directory.

    • SnapStart (dict) --

      Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

      • ApplyOn (string) --

        When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

      • OptimizationStatus (string) --

        When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

    • RuntimeVersionConfig (dict) --

      The ARN of the runtime and any errors that occured.

      • RuntimeVersionArn (string) --

        The ARN of the runtime version you want the function to use.

      • Error (dict) --

        Error response when Lambda is unable to retrieve the runtime version for a function.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

UpdateFunctionConfiguration (updated) Link ¶
Changes (both)
{'Runtime': {'ruby3.2'}}

Modify the version-specific settings of a Lambda function.

When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus , LastUpdateStatusReason , and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Lambda function states .

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

To configure function concurrency, use PutFunctionConcurrency . To grant invoke permissions to an Amazon Web Services account or Amazon Web Service, use AddPermission .

See also: AWS API Documentation

Request Syntax

client.update_function_configuration(
    FunctionName='string',
    Role='string',
    Handler='string',
    Description='string',
    Timeout=123,
    MemorySize=123,
    VpcConfig={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    },
    Environment={
        'Variables': {
            'string': 'string'
        }
    },
    Runtime='nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    DeadLetterConfig={
        'TargetArn': 'string'
    },
    KMSKeyArn='string',
    TracingConfig={
        'Mode': 'Active'|'PassThrough'
    },
    RevisionId='string',
    Layers=[
        'string',
    ],
    FileSystemConfigs=[
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    ImageConfig={
        'EntryPoint': [
            'string',
        ],
        'Command': [
            'string',
        ],
        'WorkingDirectory': 'string'
    },
    EphemeralStorage={
        'Size': 123
    },
    SnapStart={
        'ApplyOn': 'PublishedVersions'|'None'
    }
)
type FunctionName

string

param FunctionName

[REQUIRED]

The name of the Lambda function.

Name formats

  • Function namemy-function .

  • Function ARNarn:aws:lambda:us-west-2:123456789012:function:my-function .

  • Partial ARN123456789012: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.

type Role

string

param Role

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

type Handler

string

param Handler

The name of the method within your code that Lambda calls to run your function. Handler is required if the deployment package is a .zip file archive. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Lambda programming model .

type Description

string

param Description

A description of the function.

type Timeout

integer

param Timeout

The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see Lambda execution environment .

type MemorySize

integer

param MemorySize

The amount of memory available to the function at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.

type VpcConfig

dict

param VpcConfig

For network connectivity to Amazon Web Services 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 access resources and the internet only through that VPC. For more information, see Configuring a Lambda function to access resources in a VPC .

  • SubnetIds (list) --

    A list of VPC subnet IDs.

    • (string) --

  • SecurityGroupIds (list) --

    A list of VPC security group IDs.

    • (string) --

type Environment

dict

param Environment

Environment variables that are accessible from function code during execution.

type Runtime

string

param Runtime

The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

type DeadLetterConfig

dict

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

  • TargetArn (string) --

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

type KMSKeyArn

string

param KMSKeyArn

The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's environment variables . When Lambda SnapStart is activated, Lambda also uses this key is to encrypt your function's snapshot. If you deploy your function using a container image, Lambda also uses this key to encrypt your function when it's deployed. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). If you don't provide a customer managed key, Lambda uses a default service key.

type TracingConfig

dict

param TracingConfig

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

  • Mode (string) --

    The tracing mode.

type RevisionId

string

param RevisionId

Update the function only 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.

type Layers

list

param Layers

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

  • (string) --

type FileSystemConfigs

list

param FileSystemConfigs

Connection settings for an Amazon EFS file system.

  • (dict) --

    Details about the connection between a Lambda function and an Amazon EFS file system .

    • Arn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

    • LocalMountPath (string) -- [REQUIRED]

      The path where the function can access the file system, starting with /mnt/ .

type ImageConfig

dict

param ImageConfig

Container image configuration values that override the values in the container image Docker file.

  • EntryPoint (list) --

    Specifies the entry point to their application, which is typically the location of the runtime executable.

    • (string) --

  • Command (list) --

    Specifies parameters that you want to pass in with ENTRYPOINT.

    • (string) --

  • WorkingDirectory (string) --

    Specifies the working directory.

type EphemeralStorage

dict

param EphemeralStorage

The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB.

  • Size (integer) -- [REQUIRED]

    The size of the function's /tmp directory.

type SnapStart

dict

param SnapStart

The function's SnapStart setting.

  • ApplyOn (string) --

    Set to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version.

rtype

dict

returns

Response Syntax

{
    'FunctionName': 'string',
    'FunctionArn': 'string',
    'Runtime': 'nodejs'|'nodejs4.3'|'nodejs6.10'|'nodejs8.10'|'nodejs10.x'|'nodejs12.x'|'nodejs14.x'|'nodejs16.x'|'java8'|'java8.al2'|'java11'|'python2.7'|'python3.6'|'python3.7'|'python3.8'|'python3.9'|'dotnetcore1.0'|'dotnetcore2.0'|'dotnetcore2.1'|'dotnetcore3.1'|'dotnet6'|'nodejs4.3-edge'|'go1.x'|'ruby2.5'|'ruby2.7'|'provided'|'provided.al2'|'nodejs18.x'|'python3.10'|'java17'|'ruby3.2',
    'Role': 'string',
    'Handler': 'string',
    'CodeSize': 123,
    'Description': 'string',
    'Timeout': 123,
    'MemorySize': 123,
    'LastModified': 'string',
    'CodeSha256': 'string',
    'Version': 'string',
    'VpcConfig': {
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'VpcId': 'string'
    },
    'DeadLetterConfig': {
        'TargetArn': 'string'
    },
    'Environment': {
        'Variables': {
            'string': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'KMSKeyArn': 'string',
    'TracingConfig': {
        'Mode': 'Active'|'PassThrough'
    },
    'MasterArn': 'string',
    'RevisionId': 'string',
    'Layers': [
        {
            'Arn': 'string',
            'CodeSize': 123,
            'SigningProfileVersionArn': 'string',
            'SigningJobArn': 'string'
        },
    ],
    'State': 'Pending'|'Active'|'Inactive'|'Failed',
    'StateReason': 'string',
    'StateReasonCode': 'Idle'|'Creating'|'Restoring'|'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'LastUpdateStatus': 'Successful'|'Failed'|'InProgress',
    'LastUpdateStatusReason': 'string',
    'LastUpdateStatusReasonCode': 'EniLimitExceeded'|'InsufficientRolePermissions'|'InvalidConfiguration'|'InternalError'|'SubnetOutOfIPAddresses'|'InvalidSubnet'|'InvalidSecurityGroup'|'ImageDeleted'|'ImageAccessDenied'|'InvalidImage'|'KMSKeyAccessDenied'|'KMSKeyNotFound'|'InvalidStateKMSKey'|'DisabledKMSKey'|'EFSIOError'|'EFSMountConnectivityError'|'EFSMountFailure'|'EFSMountTimeout'|'InvalidRuntime'|'InvalidZipFileException'|'FunctionError',
    'FileSystemConfigs': [
        {
            'Arn': 'string',
            'LocalMountPath': 'string'
        },
    ],
    'PackageType': 'Zip'|'Image',
    'ImageConfigResponse': {
        'ImageConfig': {
            'EntryPoint': [
                'string',
            ],
            'Command': [
                'string',
            ],
            'WorkingDirectory': 'string'
        },
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    },
    'SigningProfileVersionArn': 'string',
    'SigningJobArn': 'string',
    'Architectures': [
        'x86_64'|'arm64',
    ],
    'EphemeralStorage': {
        'Size': 123
    },
    'SnapStart': {
        'ApplyOn': 'PublishedVersions'|'None',
        'OptimizationStatus': 'On'|'Off'
    },
    'RuntimeVersionConfig': {
        'RuntimeVersionArn': 'string',
        'Error': {
            'ErrorCode': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Details about a function's configuration.

    • FunctionName (string) --

      The name of the function.

    • FunctionArn (string) --

      The function's Amazon Resource Name (ARN).

    • Runtime (string) --

      The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive.

      The following list includes deprecated runtimes. For more information, see Runtime deprecation policy .

    • Role (string) --

      The function's execution role.

    • Handler (string) --

      The function that Lambda calls to begin running your function.

    • CodeSize (integer) --

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

    • Description (string) --

      The function's description.

    • Timeout (integer) --

      The amount of time in seconds that Lambda allows a function to run before stopping it.

    • MemorySize (integer) --

      The amount of memory available to the function at runtime.

    • LastModified (string) --

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

    • CodeSha256 (string) --

      The SHA256 hash of the function's deployment package.

    • Version (string) --

      The version of the Lambda function.

    • VpcConfig (dict) --

      The function's networking configuration.

      • SubnetIds (list) --

        A list of VPC subnet IDs.

        • (string) --

      • SecurityGroupIds (list) --

        A list of VPC security group IDs.

        • (string) --

      • VpcId (string) --

        The ID of the VPC.

    • DeadLetterConfig (dict) --

      The function's dead letter queue.

      • TargetArn (string) --

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

    • Environment (dict) --

      The function's environment variables . Omitted from CloudTrail logs.

      • Variables (dict) --

        Environment variable key-value pairs. Omitted from CloudTrail logs.

        • (string) --

          • (string) --

      • Error (dict) --

        Error messages for environment variables that couldn't be applied.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.

    • KMSKeyArn (string) --

      The KMS key that's used to encrypt the function's environment variables . When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.

    • TracingConfig (dict) --

      The function's X-Ray tracing configuration.

      • Mode (string) --

        The tracing mode.

    • MasterArn (string) --

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

    • RevisionId (string) --

      The latest updated revision of the function or alias.

    • Layers (list) --

      The function's layers .

      • (dict) --

        An Lambda layer .

        • Arn (string) --

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

        • CodeSize (integer) --

          The size of the layer archive in bytes.

        • SigningProfileVersionArn (string) --

          The Amazon Resource Name (ARN) for a signing profile version.

        • SigningJobArn (string) --

          The Amazon Resource Name (ARN) of a signing job.

    • State (string) --

      The current state of the function. When the state is Inactive , you can reactivate the function by invoking it.

    • StateReason (string) --

      The reason for the function's current state.

    • StateReasonCode (string) --

      The reason code for the function's current state. When the code is Creating , you can't invoke or modify the function.

    • LastUpdateStatus (string) --

      The status of the last update that was performed on the function. This is first set to Successful after function creation completes.

    • LastUpdateStatusReason (string) --

      The reason for the last update that was performed on the function.

    • LastUpdateStatusReasonCode (string) --

      The reason code for the last update that was performed on the function.

    • FileSystemConfigs (list) --

      Connection settings for an Amazon EFS file system .

      • (dict) --

        Details about the connection between a Lambda function and an Amazon EFS file system .

        • Arn (string) --

          The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

        • LocalMountPath (string) --

          The path where the function can access the file system, starting with /mnt/ .

    • PackageType (string) --

      The type of deployment package. Set to Image for container image and set Zip for .zip file archive.

    • ImageConfigResponse (dict) --

      The function's image configuration values.

      • ImageConfig (dict) --

        Configuration values that override the container image Dockerfile.

        • EntryPoint (list) --

          Specifies the entry point to their application, which is typically the location of the runtime executable.

          • (string) --

        • Command (list) --

          Specifies parameters that you want to pass in with ENTRYPOINT.

          • (string) --

        • WorkingDirectory (string) --

          Specifies the working directory.

      • Error (dict) --

        Error response to GetFunctionConfiguration .

        • ErrorCode (string) --

          Error code.

        • Message (string) --

          Error message.

    • SigningProfileVersionArn (string) --

      The ARN of the signing profile version.

    • SigningJobArn (string) --

      The ARN of the signing job.

    • Architectures (list) --

      The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is x86_64 .

      • (string) --

    • EphemeralStorage (dict) --

      The size of the function’s /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.

      • Size (integer) --

        The size of the function's /tmp directory.

    • SnapStart (dict) --

      Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart .

      • ApplyOn (string) --

        When set to PublishedVersions , Lambda creates a snapshot of the execution environment when you publish a function version.

      • OptimizationStatus (string) --

        When you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.

    • RuntimeVersionConfig (dict) --

      The ARN of the runtime and any errors that occured.

      • RuntimeVersionArn (string) --

        The ARN of the runtime version you want the function to use.

      • Error (dict) --

        Error response when Lambda is unable to retrieve the runtime version for a function.

        • ErrorCode (string) --

          The error code.

        • Message (string) --

          The error message.