aws-cdk-lib.aws_servicecatalog.CloudFormationTemplateConfig

interface CloudFormationTemplateConfig

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalog.CloudFormationTemplateConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#CloudFormationTemplateConfig
Javasoftware.amazon.awscdk.services.servicecatalog.CloudFormationTemplateConfig
Pythonaws_cdk.aws_servicecatalog.CloudFormationTemplateConfig
TypeScript (source)aws-cdk-lib » aws_servicecatalog » CloudFormationTemplateConfig

Obtainable from CloudFormationTemplate.bind()

Result of binding Template into a Product.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from 'aws-cdk-lib';
import { aws_servicecatalog as servicecatalog } from 'aws-cdk-lib';

declare const bucket: s3.Bucket;
const cloudFormationTemplateConfig: servicecatalog.CloudFormationTemplateConfig = {
  httpUrl: 'httpUrl',

  // the properties below are optional
  assetBucket: bucket,
};

Properties

NameTypeDescription
httpUrlstringThe http url of the template in S3.
assetBucket?IBucketThe S3 bucket containing product stack assets.

httpUrl

Type: string

The http url of the template in S3.


assetBucket?

Type: IBucket (optional, default: None - no assets are used in this product)

The S3 bucket containing product stack assets.