CfnParametersCodeProps¶
-
class
aws_cdk.aws_lambda.
CfnParametersCodeProps
(*, bucket_name_param=None, object_key_param=None)¶ Bases:
object
Construction properties for {@link CfnParametersCode}.
- Parameters
bucket_name_param (
Optional
[CfnParameter
]) – The CloudFormation parameter that represents the name of the S3 Bucket where the Lambda code will be located in. Must be of type ‘String’. Default: a new parameter will be createdobject_key_param (
Optional
[CfnParameter
]) – The CloudFormation parameter that represents the path inside the S3 Bucket where the Lambda code will be located at. Must be of type ‘String’. Default: a new parameter will be created
Attributes
-
bucket_name_param
¶ The CloudFormation parameter that represents the name of the S3 Bucket where the Lambda code will be located in.
Must be of type ‘String’.
- Default
a new parameter will be created
- Return type
Optional
[CfnParameter
]
-
object_key_param
¶ The CloudFormation parameter that represents the path inside the S3 Bucket where the Lambda code will be located at.
Must be of type ‘String’.
- Default
a new parameter will be created
- Return type
Optional
[CfnParameter
]