AwsLambdaFunctionPropertiesArgs

data class AwsLambdaFunctionPropertiesArgs(val architectures: Output<List<Either<String, Architectures>>>? = null, val arn: Output<String>? = null, val code: Output<CodeArgs>? = null, val codeSigningConfigArn: Output<String>? = null, val deadLetterConfig: Output<DeadLetterConfigArgs>? = null, val description: Output<String>? = null, val environment: Output<EnvironmentArgs>? = null, val ephemeralStorage: Output<EphemeralStorageArgs>? = null, val fileSystemConfigs: Output<List<FileSystemConfigArgs>>? = null, val functionName: Output<String>? = null, val handler: Output<String>? = null, val imageConfig: Output<ImageConfigArgs>? = null, val kmsKeyArn: Output<String>? = null, val layers: Output<List<String>>? = null, val loggingConfig: Output<LoggingConfigArgs>? = null, val memorySize: Output<Int>? = null, val packageType: Output<Either<String, PackageType>>? = null, val reservedConcurrentExecutions: Output<Int>? = null, val role: Output<String>? = null, val runtime: Output<String>? = null, val runtimeManagementConfig: Output<RuntimeManagementConfigArgs>? = null, val snapStart: Output<SnapStartArgs>? = null, val snapStartResponse: Output<SnapStartResponseArgs>? = null, val tags: Output<List<TagArgs>>? = null, val timeout: Output<Int>? = null, val tracingConfig: Output<TracingConfigArgs>? = null, val vpcConfig: Output<VpcConfigArgs>? = null) : ConvertibleToJava<AwsLambdaFunctionPropertiesArgs>

Definition of awsLambdaFunction

Constructors

Link copied to clipboard
constructor(architectures: Output<List<Either<String, Architectures>>>? = null, arn: Output<String>? = null, code: Output<CodeArgs>? = null, codeSigningConfigArn: Output<String>? = null, deadLetterConfig: Output<DeadLetterConfigArgs>? = null, description: Output<String>? = null, environment: Output<EnvironmentArgs>? = null, ephemeralStorage: Output<EphemeralStorageArgs>? = null, fileSystemConfigs: Output<List<FileSystemConfigArgs>>? = null, functionName: Output<String>? = null, handler: Output<String>? = null, imageConfig: Output<ImageConfigArgs>? = null, kmsKeyArn: Output<String>? = null, layers: Output<List<String>>? = null, loggingConfig: Output<LoggingConfigArgs>? = null, memorySize: Output<Int>? = null, packageType: Output<Either<String, PackageType>>? = null, reservedConcurrentExecutions: Output<Int>? = null, role: Output<String>? = null, runtime: Output<String>? = null, runtimeManagementConfig: Output<RuntimeManagementConfigArgs>? = null, snapStart: Output<SnapStartArgs>? = null, snapStartResponse: Output<SnapStartResponseArgs>? = null, tags: Output<List<TagArgs>>? = null, timeout: Output<Int>? = null, tracingConfig: Output<TracingConfigArgs>? = null, vpcConfig: Output<VpcConfigArgs>? = null)

Properties

Link copied to clipboard
val architectures: Output<List<Either<String, Architectures>>>? = null

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

Link copied to clipboard
val arn: Output<String>? = null

Property arn

Link copied to clipboard
val code: Output<CodeArgs>? = null

The code for the function. The deployment package for a Lambda function. To deploy a function defined as a container image, you specify the location of a container image in the Amazon ECR registry. For a .zip file deployment package, you can specify the location of an object in Amazon S3. For Node.js and Python functions, you can specify the function code inline in the template. Changes to a deployment package in Amazon S3 or a container image in ECR are not detected automatically during stack updates. To update the function code, change the object key or version in the template.

Link copied to clipboard
val codeSigningConfigArn: Output<String>? = null

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.

Link copied to clipboard

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. The dead-letter queue for failed asynchronous invocations.

Link copied to clipboard
val description: Output<String>? = null

A description of the function.

Link copied to clipboard
val environment: Output<EnvironmentArgs>? = null

Environment variables that are accessible from function code during execution. A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.

Link copied to clipboard

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

Link copied to clipboard

Connection settings for an Amazon EFS file system. To connect a function to a file system, a mount target must be available in every Availability Zone that your function connects to. If your template contains an AWS::EFS::MountTarget resource, you must also specify a `DependsOn` attribute to ensure that the mount target is created or updated before the function. For more information about using the `DependsOn` attribute, see DependsOn Attribute.

Link copied to clipboard
val functionName: Output<String>? = null

The name of the Lambda function, up to 64 characters in length. If you don't specify a name, CFN generates one. If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.

Link copied to clipboard
val handler: Output<String>? = null

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.

Link copied to clipboard
val imageConfig: Output<ImageConfigArgs>? = null

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings. Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

Link copied to clipboard
val kmsKeyArn: Output<String>? = null

The ARN of the KMSlong (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.

Link copied to clipboard
val layers: Output<List<String>>? = null

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

Link copied to clipboard
val loggingConfig: Output<LoggingConfigArgs>? = null

The function's Amazon CloudWatch Logs configuration settings. The function's Amazon CloudWatch Logs configuration settings.

Link copied to clipboard
val memorySize: Output<Int>? = null

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. Note that new AWS accounts have reduced concurrency and memory quotas. AWS raises these quotas automatically based on your usage. You can also request a quota increase.

Link copied to clipboard
val packageType: Output<Either<String, PackageType>>? = null

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

Link copied to clipboard
val reservedConcurrentExecutions: Output<Int>? = null

The number of simultaneous executions to reserve for the function.

Link copied to clipboard
val role: Output<String>? = null

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

Link copied to clipboard
val runtime: Output<String>? = null

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.

Link copied to clipboard

Sets the runtime management configuration for a function's version. For more information, see Runtime updates. Sets the runtime management configuration for a function's version. For more information, see Runtime updates.

Link copied to clipboard
val snapStart: Output<SnapStartArgs>? = null

The function's SnapStart setting. The function's SnapStart setting.

Link copied to clipboard

The function's SnapStart setting.

Link copied to clipboard
val tags: Output<List<TagArgs>>? = null

A list of tags to apply to the function.

Link copied to clipboard
val timeout: Output<Int>? = null

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.

Link copied to clipboard
val tracingConfig: Output<TracingConfigArgs>? = null

Set `Mode` to `Active` to sample and trace a subset of incoming requests with X-Ray. The function's tracing configuration. To sample and record incoming requests, set `Mode` to `Active`.

Link copied to clipboard
val vpcConfig: Output<VpcConfigArgs>? = null

For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more information, see Configuring a Lambda function to access resources in a VPC. The VPC security groups and subnets that are attached to a Lambda function. When you connect a function to a VPC, Lambda creates an elastic network interface for each combination of security group and subnet in the function's VPC configuration. The function can only access resources and the internet through that VPC. For more information, see VPC Settings. When you delete a function, CFN monitors the state of its network interfaces and waits for Lambda to delete them before proceeding. If the VPC is defined in the same stack, the network interfaces need to be deleted by Lambda before CFN can delete the VPC's resources. To monitor network interfaces, CFN needs the `ec2:DescribeNetworkInterfaces` permission. It obtains this from the user or role that modifies the stack. If you don't provide this permission, CFN does not wait for network interfaces to be deleted.

Functions

Link copied to clipboard
open override fun toJava(): AwsLambdaFunctionPropertiesArgs