Interface CloudFormationProductVersion
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CloudFormationProductVersion.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:20.776Z")
@Stability(Stable)
public interface CloudFormationProductVersion
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.servicecatalog.*;
CloudFormationTemplate cloudFormationTemplate;
CloudFormationProductVersion cloudFormationProductVersion = CloudFormationProductVersion.builder()
.cloudFormationTemplate(cloudFormationTemplate)
// the properties below are optional
.description("description")
.productVersionName("productVersionName")
.validateTemplate(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCloudFormationProductVersionstatic final classAn implementation forCloudFormationProductVersion -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The S3 template that points to the provisioning version template.default StringThe description of the product version.default StringThe name of the product version.default BooleanWhether the specified product template will be validated by CloudFormation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudFormationTemplate
The S3 template that points to the provisioning version template. -
getDescription
The description of the product version.Default: - No description provided
-
getProductVersionName
The name of the product version.Default: - No product version name provided
-
getValidateTemplate
Whether the specified product template will be validated by CloudFormation.If turned off, an invalid template configuration can be stored.
Default: true
-
builder
-