aws-cdk-lib.aws_lambda.CfnParametersCodeProps
interface CfnParametersCodeProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Lambda.CfnParametersCodeProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnParametersCodeProps |
![]() | software.amazon.awscdk.services.lambda.CfnParametersCodeProps |
![]() | aws_cdk.aws_lambda.CfnParametersCodeProps |
![]() | aws-cdk-lib » aws_lambda » CfnParametersCodeProps |
Construction properties for CfnParametersCode
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_lambda as lambda } from 'aws-cdk-lib';
declare const cfnParameter: cdk.CfnParameter;
const cfnParametersCodeProps: lambda.CfnParametersCodeProps = {
bucketNameParam: cfnParameter,
objectKeyParam: cfnParameter,
};
Properties
Name | Type | Description |
---|---|---|
bucket | Cfn | The CloudFormation parameter that represents the name of the S3 Bucket where the Lambda code will be located in. |
object | Cfn | The CloudFormation parameter that represents the path inside the S3 Bucket where the Lambda code will be located at. |
bucketNameParam?
Type:
Cfn
(optional, default: a new parameter will be created)
The CloudFormation parameter that represents the name of the S3 Bucket where the Lambda code will be located in.
Must be of type 'String'.
objectKeyParam?
Type:
Cfn
(optional, default: a new parameter will be created)
The CloudFormation parameter that represents the path inside the S3 Bucket where the Lambda code will be located at.
Must be of type 'String'.