@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-15T10:03:45.285Z") @Stability(value=Experimental) public interface CloudFormationProductProps extends software.amazon.jsii.JsiiSerializable
Example:
import path.*;
CloudFormationProduct product = CloudFormationProduct.Builder.create(this, "MyFirstProduct")
.productName("My Product")
.owner("Product Owner")
.productVersions(List.of(CloudFormationProductVersion.builder()
.productVersionName("v1")
.cloudFormationTemplate(CloudFormationTemplate.fromUrl("https://raw.githubusercontent.com/awslabs/aws-cloudformation-templates/master/aws/services/ServiceCatalog/Product.yaml"))
.build(), CloudFormationProductVersion.builder()
.productVersionName("v2")
.cloudFormationTemplate(CloudFormationTemplate.fromAsset(join(__dirname, "development-environment.template.json")))
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CloudFormationProductProps.Builder
A builder for
CloudFormationProductProps |
static class |
CloudFormationProductProps.Jsii$Proxy
An implementation for
CloudFormationProductProps |
| Modifier and Type | Method and Description |
|---|---|
static CloudFormationProductProps.Builder |
builder() |
default String |
getDescription()
(experimental) The description of the product.
|
default String |
getDistributor()
(experimental) The distributor of the product.
|
default MessageLanguage |
getMessageLanguage()
(experimental) The language code.
|
String |
getOwner()
(experimental) The owner of the product.
|
String |
getProductName()
(experimental) The name of the product.
|
List<CloudFormationProductVersion> |
getProductVersions()
(experimental) The configuration of the product version.
|
default Boolean |
getReplaceProductVersionIds()
(experimental) Whether to give provisioning artifacts a new unique identifier when the product attributes or provisioning artifacts is updated.
|
default String |
getSupportDescription()
(experimental) The support information about the product.
|
default String |
getSupportEmail()
(experimental) The contact email for product support.
|
default String |
getSupportUrl()
(experimental) The contact URL for product support.
|
default TagOptions |
getTagOptions()
(experimental) TagOptions associated directly to a product.
|
@Stability(value=Experimental) @NotNull String getOwner()
@Stability(value=Experimental) @NotNull String getProductName()
@Stability(value=Experimental) @NotNull List<CloudFormationProductVersion> getProductVersions()
@Stability(value=Experimental) @Nullable default String getDescription()
Default: - No description provided
@Stability(value=Experimental) @Nullable default String getDistributor()
Default: - No distributor provided
@Stability(value=Experimental) @Nullable default MessageLanguage getMessageLanguage()
Controls language for logging and errors.
Default: - English
@Stability(value=Experimental) @Nullable default Boolean getReplaceProductVersionIds()
Default: false
@Stability(value=Experimental) @Nullable default String getSupportDescription()
Default: - No support description provided
@Stability(value=Experimental) @Nullable default String getSupportEmail()
Default: - No support email provided
@Stability(value=Experimental) @Nullable default String getSupportUrl()
Default: - No support URL provided
@Stability(value=Experimental) @Nullable default TagOptions getTagOptions()
Default: - No tagOptions provided
@Stability(value=Experimental) static CloudFormationProductProps.Builder builder()
CloudFormationProductProps.Builder of CloudFormationProductPropsCopyright © 2021. All rights reserved.