aws-cdk
Version:
CDK Toolkit, the command line tool for CDK apps
20 lines • 383 B
JSON
{
"Resources": {
"Func": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Code": {
"S3Bucket": "current-bucket",
"S3Key": "new-key"
},
"FunctionName": "my-function"
}
},
"Version": {
"Type": "AWS::Lambda::Version",
"Properties": {
"FunctionName": { "Ref": "Func" }
}
}
}
}