Interface CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnCloudFormationProduct

@Stability(Stable) public static interface CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Information about a provisioning artifact (also known as a version) for a product.

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;
 ProvisioningArtifactPropertiesProperty provisioningArtifactPropertiesProperty = ProvisioningArtifactPropertiesProperty.builder()
         .info(info)
         // the properties below are optional
         .description("description")
         .disableTemplateValidation(false)
         .name("name")
         .type("type")
         .build();
 

See Also: