CloudFormationTemplateConfig
- class aws_cdk.aws_servicecatalog.CloudFormationTemplateConfig(*, http_url, asset_bucket=None)
Bases:
object
Result of binding
Template
into aProduct
.- Parameters:
http_url (
str
) – The http url of the template in S3.asset_bucket (
Optional
[IBucket
]) – The S3 bucket containing product stack assets. Default: - None - no assets are used in this product
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_s3 as s3 from aws_cdk import aws_servicecatalog as servicecatalog # bucket: s3.Bucket cloud_formation_template_config = servicecatalog.CloudFormationTemplateConfig( http_url="httpUrl", # the properties below are optional asset_bucket=bucket )
Attributes
- asset_bucket
The S3 bucket containing product stack assets.
- Default:
None - no assets are used in this product
- http_url
The http url of the template in S3.