@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-15T10:03:45.273Z") @Stability(value=Stable) public interface CfnCloudFormationProductProps 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.*;
Object info;
CfnCloudFormationProductProps cfnCloudFormationProductProps = CfnCloudFormationProductProps.builder()
.name("name")
.owner("owner")
.provisioningArtifactParameters(List.of(ProvisioningArtifactPropertiesProperty.builder()
.info(info)
// the properties below are optional
.description("description")
.disableTemplateValidation(false)
.name("name")
.build()))
// the properties below are optional
.acceptLanguage("acceptLanguage")
.description("description")
.distributor("distributor")
.replaceProvisioningArtifacts(false)
.supportDescription("supportDescription")
.supportEmail("supportEmail")
.supportUrl("supportUrl")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCloudFormationProductProps.Builder
A builder for
CfnCloudFormationProductProps |
static class |
CfnCloudFormationProductProps.Jsii$Proxy
An implementation for
CfnCloudFormationProductProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCloudFormationProductProps.Builder |
builder() |
default String |
getAcceptLanguage()
`AWS::ServiceCatalog::CloudFormationProduct.AcceptLanguage`.
|
default String |
getDescription()
`AWS::ServiceCatalog::CloudFormationProduct.Description`.
|
default String |
getDistributor()
`AWS::ServiceCatalog::CloudFormationProduct.Distributor`.
|
String |
getName()
`AWS::ServiceCatalog::CloudFormationProduct.Name`.
|
String |
getOwner()
`AWS::ServiceCatalog::CloudFormationProduct.Owner`.
|
Object |
getProvisioningArtifactParameters()
`AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactParameters`.
|
default Object |
getReplaceProvisioningArtifacts()
`AWS::ServiceCatalog::CloudFormationProduct.ReplaceProvisioningArtifacts`.
|
default String |
getSupportDescription()
`AWS::ServiceCatalog::CloudFormationProduct.SupportDescription`.
|
default String |
getSupportEmail()
`AWS::ServiceCatalog::CloudFormationProduct.SupportEmail`.
|
default String |
getSupportUrl()
`AWS::ServiceCatalog::CloudFormationProduct.SupportUrl`.
|
default List<CfnTag> |
getTags()
`AWS::ServiceCatalog::CloudFormationProduct.Tags`.
|
@Stability(value=Stable) @Nullable default String getAcceptLanguage()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDistributor()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getOwner()
@Stability(value=Stable) @NotNull Object getProvisioningArtifactParameters()
@Stability(value=Stable) @Nullable default Object getReplaceProvisioningArtifacts()
@Stability(value=Stable) @Nullable default String getSupportDescription()
@Stability(value=Stable) @Nullable default String getSupportEmail()
@Stability(value=Stable) @Nullable default String getSupportUrl()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCloudFormationProductProps.Builder builder()
Copyright © 2021. All rights reserved.