@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-25T18:29:03.923Z")
public interface CloudFormationProductVersion
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CloudFormationProductVersion.Builder
A builder for
CloudFormationProductVersion |
static class |
CloudFormationProductVersion.Jsii$Proxy
An implementation for
CloudFormationProductVersion |
Modifier and Type | Method and Description |
---|---|
static CloudFormationProductVersion.Builder |
builder() |
CloudFormationTemplate |
getCloudFormationTemplate()
The S3 template that points to the provisioning version template.
|
default java.lang.String |
getDescription()
The description of the product version.
|
default java.lang.String |
getProductVersionName()
The name of the product version.
|
default java.lang.Boolean |
getValidateTemplate()
Whether the specified product template will be validated by CloudFormation.
|
CloudFormationTemplate getCloudFormationTemplate()
default java.lang.String getDescription()
Default: - No description provided
default java.lang.String getProductVersionName()
Default: - No product version name provided
default java.lang.Boolean getValidateTemplate()
If turned off, an invalid template configuration can be stored.
Default: true
static CloudFormationProductVersion.Builder builder()