@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.100Z") @Stability(value=Stable) public interface CloudFormationProductVersion extends software.amazon.jsii.JsiiSerializable
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 String |
getDescription()
The description of the product version.
|
default String |
getProductVersionName()
The name of the product version.
|
default Boolean |
getValidateTemplate()
Whether the specified product template will be validated by CloudFormation.
|
@Stability(value=Stable) @NotNull CloudFormationTemplate getCloudFormationTemplate()
@Stability(value=Stable) @Nullable default String getDescription()
Default: - No description provided
@Stability(value=Stable) @Nullable default String getProductVersionName()
Default: - No product version name provided
@Stability(value=Stable) @Nullable default Boolean getValidateTemplate()
If turned off, an invalid template configuration can be stored.
Default: true
@Stability(value=Stable) static CloudFormationProductVersion.Builder builder()
Copyright © 2022. All rights reserved.