aws-cdk-lib.aws_servicecatalog.CloudFormationProductVersion

interface CloudFormationProductVersion

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

Obtainable from ProductStackHistory.currentVersion(), ProductStackHistory.versionFromSnapshot()

Properties of product version (also known as a provisioning artifact).

Example

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

declare const cloudFormationTemplate: servicecatalog.CloudFormationTemplate;
const cloudFormationProductVersion: servicecatalog.CloudFormationProductVersion = {
  cloudFormationTemplate: cloudFormationTemplate,

  // the properties below are optional
  description: 'description',
  productVersionName: 'productVersionName',
  validateTemplate: false,
};

Properties

NameTypeDescription
cloudFormationTemplateCloudFormationTemplateThe S3 template that points to the provisioning version template.
description?stringThe description of the product version.
productVersionName?stringThe name of the product version.
validateTemplate?booleanWhether the specified product template will be validated by CloudFormation.

cloudFormationTemplate

Type: CloudFormationTemplate

The S3 template that points to the provisioning version template.


description?

Type: string (optional, default: No description provided)

The description of the product version.


productVersionName?

Type: string (optional, default: No product version name provided)

The name of the product version.


validateTemplate?

Type: boolean (optional, default: true)

Whether the specified product template will be validated by CloudFormation.

If turned off, an invalid template configuration can be stored.