GetFunctionResult

data class GetFunctionResult(val architectures: List<FunctionArchitecturesItem>? = null, val arn: String? = null, val codeSigningConfigArn: String? = null, val deadLetterConfig: FunctionDeadLetterConfig? = null, val description: String? = null, val environment: FunctionEnvironment? = null, val ephemeralStorage: FunctionEphemeralStorage? = null, val fileSystemConfigs: List<FunctionFileSystemConfig>? = null, val handler: String? = null, val imageConfig: FunctionImageConfig? = null, val kmsKeyArn: String? = null, val layers: List<String>? = null, val memorySize: Int? = null, val packageType: FunctionPackageType? = null, val reservedConcurrentExecutions: Int? = null, val role: String? = null, val runtime: String? = null, val runtimeManagementConfig: FunctionRuntimeManagementConfig? = null, val snapStartResponse: FunctionSnapStartResponse? = null, val tags: List<FunctionTag>? = null, val timeout: Int? = null, val tracingConfig: FunctionTracingConfig? = null, val vpcConfig: FunctionVpcConfig? = null)

Constructors

Link copied to clipboard
fun GetFunctionResult(architectures: List<FunctionArchitecturesItem>? = null, arn: String? = null, codeSigningConfigArn: String? = null, deadLetterConfig: FunctionDeadLetterConfig? = null, description: String? = null, environment: FunctionEnvironment? = null, ephemeralStorage: FunctionEphemeralStorage? = null, fileSystemConfigs: List<FunctionFileSystemConfig>? = null, handler: String? = null, imageConfig: FunctionImageConfig? = null, kmsKeyArn: String? = null, layers: List<String>? = null, memorySize: Int? = null, packageType: FunctionPackageType? = null, reservedConcurrentExecutions: Int? = null, role: String? = null, runtime: String? = null, runtimeManagementConfig: FunctionRuntimeManagementConfig? = null, snapStartResponse: FunctionSnapStartResponse? = null, tags: List<FunctionTag>? = null, timeout: Int? = null, tracingConfig: FunctionTracingConfig? = null, vpcConfig: FunctionVpcConfig? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val arn: String? = null

Unique identifier for function resources

Link copied to clipboard

A unique Arn for CodeSigningConfig resource

Link copied to clipboard

A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing.

Link copied to clipboard
val description: String? = null

A description of the function.

Link copied to clipboard

Environment variables that are accessible from function code during execution.

Link copied to clipboard

A function's ephemeral storage settings.

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.

Link copied to clipboard
val handler: String? = null

The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime

Link copied to clipboard

ImageConfig

Link copied to clipboard
val kmsKeyArn: String? = null

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

Link copied to clipboard
val layers: 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 memorySize: Int? = null

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

Link copied to clipboard

PackageType.

Link copied to clipboard

The number of simultaneous executions to reserve for the function.

Link copied to clipboard
val role: String? = null

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

Link copied to clipboard
val runtime: String? = null

The identifier of the function's runtime.

Link copied to clipboard

RuntimeManagementConfig

Link copied to clipboard

The SnapStart response of your function

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

A list of tags to apply to the function.

Link copied to clipboard
val timeout: Int? = null

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

Link copied to clipboard

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

Link copied to clipboard

For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC.