Interface CfnFunctionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionProps.Jsii$Proxy
CfnFunction.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
CfnFunctionProps cfnFunctionProps = CfnFunctionProps.builder()
.code(CodeProperty.builder()
.imageUri("imageUri")
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.s3ObjectVersion("s3ObjectVersion")
.sourceKmsKeyArn("sourceKmsKeyArn")
.zipFile("zipFile")
.build())
.role("role")
// the properties below are optional
.architectures(List.of("architectures"))
.codeSigningConfigArn("codeSigningConfigArn")
.deadLetterConfig(DeadLetterConfigProperty.builder()
.targetArn("targetArn")
.build())
.description("description")
.environment(EnvironmentProperty.builder()
.variables(Map.of(
"variablesKey", "variables"))
.build())
.ephemeralStorage(EphemeralStorageProperty.builder()
.size(123)
.build())
.fileSystemConfigs(List.of(FileSystemConfigProperty.builder()
.arn("arn")
.localMountPath("localMountPath")
.build()))
.functionName("functionName")
.handler("handler")
.imageConfig(ImageConfigProperty.builder()
.command(List.of("command"))
.entryPoint(List.of("entryPoint"))
.workingDirectory("workingDirectory")
.build())
.kmsKeyArn("kmsKeyArn")
.layers(List.of("layers"))
.loggingConfig(LoggingConfigProperty.builder()
.applicationLogLevel("applicationLogLevel")
.logFormat("logFormat")
.logGroup("logGroup")
.systemLogLevel("systemLogLevel")
.build())
.memorySize(123)
.packageType("packageType")
.recursiveLoop("recursiveLoop")
.reservedConcurrentExecutions(123)
.runtime("runtime")
.runtimeManagementConfig(RuntimeManagementConfigProperty.builder()
.updateRuntimeOn("updateRuntimeOn")
// the properties below are optional
.runtimeVersionArn("runtimeVersionArn")
.build())
.snapStart(SnapStartProperty.builder()
.applyOn("applyOn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.timeout(123)
.tracingConfig(TracingConfigProperty.builder()
.mode("mode")
.build())
.vpcConfig(VpcConfigProperty.builder()
.ipv6AllowedForDualStack(false)
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionPropsstatic final classAn implementation forCfnFunctionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFunctionProps.Builderbuilder()The instruction set architecture that the function supports.getCode()The code for the function.default StringTo enable code signing for this function, specify the ARN of a code-signing configuration.default ObjectA dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing.default StringA description of the function.default ObjectEnvironment variables that are accessible from function code during execution.default ObjectThe size of the function's/tmpdirectory in MB.default ObjectConnection settings for an Amazon EFS file system.default StringThe name of the Lambda function, up to 64 characters in length.default StringThe name of the method within your code that Lambda calls to run your function.default ObjectConfiguration values that override the container image Dockerfile settings.default StringThe ARN of the AWS Key Management Service ( AWS KMS ) customer managed key that's used to encrypt the following resources:.A list of function layers to add to the function's execution environment.default ObjectThe function's Amazon CloudWatch Logs configuration settings.default NumberThe amount of memory available to the function at runtime.default StringThe type of deployment package.default StringThe status of your function's recursive loop detection configuration.default NumberThe number of simultaneous executions to reserve for the function.getRole()The Amazon Resource Name (ARN) of the function's execution role.default StringThe identifier of the function's runtime .default ObjectSets the runtime management configuration for a function's version.default ObjectThe function's AWS Lambda SnapStart setting.getTags()A list of tags to apply to the function.default NumberThe amount of time (in seconds) that Lambda allows a function to run before stopping it.default Objectdefault ObjectFor network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCode
The code for the function. You can define your function code in multiple ways:.- For .zip deployment packages, you can specify the Amazon S3 location of the .zip file in the
S3Bucket,S3Key, andS3ObjectVersionproperties. - For .zip deployment packages, you can alternatively define the function code inline in the
ZipFileproperty. This method works only for Node.js and Python functions. - For container images, specify the URI of your container image in the Amazon ECR registry in the
ImageUriproperty.
Returns union: either
IResolvableorCfnFunction.CodeProperty- See Also:
- For .zip deployment packages, you can specify the Amazon S3 location of the .zip file in the
-
getRole
The Amazon Resource Name (ARN) of the function's execution role.- See Also:
-
getArchitectures
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.- See Also:
-
getCodeSigningConfigArn
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.
- See Also:
-
getDeadLetterConfig
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 .
Returns union: either
IResolvableorCfnFunction.DeadLetterConfigProperty- See Also:
-
getDescription
A description of the function.- See Also:
-
getEnvironment
Environment variables that are accessible from function code during execution.Returns union: either
IResolvableorCfnFunction.EnvironmentProperty- See Also:
-
getEphemeralStorage
The size of the function's/tmpdirectory in MB.The default value is 512, but it can be any whole number between 512 and 10,240 MB.
Returns union: either
IResolvableorCfnFunction.EphemeralStorageProperty- See Also:
-
getFileSystemConfigs
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
DependsOnattribute to ensure that the mount target is created or updated before the function.For more information about using the
DependsOnattribute, see DependsOn Attribute .Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFunction.FileSystemConfigProperty>- See Also:
-
getFunctionName
The name of the Lambda function, up to 64 characters in length.If you don't specify a name, AWS CloudFormation 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.
- See Also:
-
getHandler
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 .
- See Also:
-
getImageConfig
Configuration values that override the container image Dockerfile settings.For more information, see Container image settings .
Returns union: either
IResolvableorCfnFunction.ImageConfigProperty- See Also:
-
getKmsKeyArn
The ARN of the AWS Key Management Service ( AWS KMS ) customer managed key that's used to encrypt the following resources:.- The function's environment variables .
- The function's Lambda SnapStart snapshots.
- When used with
SourceKMSKeyArn, the unzipped version of the .zip deployment package that's used for function invocations. For more information, see Specifying a customer managed key for Lambda . - The optimized version of the container image that's used for function invocations. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). For more information, see Function lifecycle .
If you don't provide a customer managed key, Lambda uses an AWS owned key or an AWS managed key .
- See Also:
-
getLayers
A list of function layers to add to the function's execution environment. Specify each layer by its ARN, including the version.- See Also:
-
getLoggingConfig
The function's Amazon CloudWatch Logs configuration settings.Returns union: either
IResolvableorCfnFunction.LoggingConfigProperty- See Also:
-
getMemorySize
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.- See Also:
-
getPackageType
The type of deployment package.Set to
Imagefor container image and setZipfor .zip file archive.- See Also:
-
getRecursiveLoop
The status of your function's recursive loop detection configuration.When this value is set to
Allowand Lambda detects your function being invoked as part of a recursive loop, it doesn't take any action.When this value is set to
Terminateand Lambda detects your function being invoked as part of a recursive loop, it stops your function being invoked and notifies you.- See Also:
-
getReservedConcurrentExecutions
The number of simultaneous executions to reserve for the function.- See Also:
-
getRuntime
The identifier of the function's runtime . Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see Runtime use after deprecation .
For a list of all currently supported runtimes, see Supported runtimes .
- See Also:
-
getRuntimeManagementConfig
Sets the runtime management configuration for a function's version.For more information, see Runtime updates .
Returns union: either
IResolvableorCfnFunction.RuntimeManagementConfigProperty- See Also:
-
getSnapStart
The function's AWS Lambda SnapStart setting.Returns union: either
IResolvableorCfnFunction.SnapStartProperty- See Also:
-
getTags
A list of tags to apply to the function.You must have the
lambda:TagResource,lambda:UntagResource, andlambda:ListTagspermissions for your IAM principal to manage the AWS CloudFormation stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.- See Also:
-
getTimeout
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 .
- See Also:
-
getTracingConfig
SetModetoActiveto sample and trace a subset of incoming requests with X-Ray .Returns union: either
IResolvableorCfnFunction.TracingConfigProperty- See Also:
-
getVpcConfig
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 .
Returns union: either
IResolvableorCfnFunction.VpcConfigProperty- See Also:
-
builder
- Returns:
- a
CfnFunctionProps.BuilderofCfnFunctionProps
-