@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-15T10:03:45.285Z") @Stability(value=Experimental) 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()
(experimental) The S3 template that points to the provisioning version template.
|
default String |
getDescription()
(experimental) The description of the product version.
|
default String |
getProductVersionName()
(experimental) The name of the product version.
|
default Boolean |
getValidateTemplate()
(experimental) Whether the specified product template will be validated by CloudFormation.
|
@Stability(value=Experimental) @NotNull CloudFormationTemplate getCloudFormationTemplate()
@Stability(value=Experimental) @Nullable default String getDescription()
Default: - No description provided
@Stability(value=Experimental) @Nullable default String getProductVersionName()
Default: - No product version name provided
@Stability(value=Experimental) @Nullable default Boolean getValidateTemplate()
If turned off, an invalid template configuration can be stored.
Default: true
@Stability(value=Experimental) static CloudFormationProductVersion.Builder builder()
Copyright © 2021. All rights reserved.