aws-cdk
Version:
CDK Toolkit, the command line tool for CDK apps
30 lines (29 loc) • 553 B
JSON
{
"Resources": {
"Func": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Code": {
"S3Bucket": {
"Ref": "referencetoS3BucketParam"
},
"S3Key": {
"Ref": "referencetoS3KeyParam"
}
},
"FunctionName": "my-function"
},
"Metadata": {
"aws:asset:path": "old-path"
}
}
},
"Parameters": {
"referencetoS3BucketParam": {
"Type": "String"
},
"referencetoS3KeyParam": {
"Type": "String"
}
}
}