@Stability(value=Stable)
public static interface CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty
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;
ProvisioningArtifactPropertiesProperty provisioningArtifactPropertiesProperty = ProvisioningArtifactPropertiesProperty.builder()
.info(info)
// the properties below are optional
.description("description")
.disableTemplateValidation(false)
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty.Builder
|
static class |
CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty.Jsii$Proxy
An implementation for
CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty.Builder |
builder() |
default String |
getDescription()
The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
|
default Object |
getDisableTemplateValidation()
If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
|
Object |
getInfo()
Specify the template source with one of the following options, but not both.
|
default String |
getName()
The name of the provisioning artifact (for example, v1 v2beta).
|
@Stability(value=Stable) @NotNull Object getInfo()
Keys accepted: [ LoadTemplateFromURL , ImportFromPhysicalId ]
The URL of the AWS CloudFormation template in Amazon S3, AWS CodeCommit, or GitHub in JSON format. Specify the URL in JSON format as follows:
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
ImportFromPhysicalId : The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: “arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getDisableTemplateValidation()
@Stability(value=Stable) @Nullable default String getName()
No spaces are allowed.
@Stability(value=Stable) static CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.