Class: Aws::ServiceCatalog::Types::ProvisioningArtifactProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::ProvisioningArtifactProperties
- Defined in:
- gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb
Overview
Information about a provisioning artifact (also known as a version) for a product.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
-
#disable_template_validation ⇒ Boolean
If set to true, Service Catalog stops validating the specified provisioning artifact even if it is invalid.
-
#info ⇒ Hash<String,String>
Specify the template source with one of the following options, but not both.
-
#name ⇒ String
The name of the provisioning artifact (for example, v1 v2beta).
-
#type ⇒ String
The type of provisioning artifact.
Instance Attribute Details
#description ⇒ String
The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
5225 5226 5227 5228 5229 5230 5231 5232 5233 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5225 class ProvisioningArtifactProperties < Struct.new( :name, :description, :info, :type, :disable_template_validation) SENSITIVE = [] include Aws::Structure end |
#disable_template_validation ⇒ Boolean
If set to true, Service Catalog stops validating the specified provisioning artifact even if it is invalid.
Service Catalog does not support template validation for the
TERRAFORM_OS
product type.
5225 5226 5227 5228 5229 5230 5231 5232 5233 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5225 class ProvisioningArtifactProperties < Struct.new( :name, :description, :info, :type, :disable_template_validation) SENSITIVE = [] include Aws::Structure end |
#info ⇒ Hash<String,String>
Specify the template source with one of the following options, but
not both. Keys accepted: [ LoadTemplateFromURL
,
ImportFromPhysicalId
]
The URL of the CloudFormation template in Amazon S3 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 CloudFormation stack
arn. Specify the physical id in JSON format as follows:
ImportFromPhysicalId:
“arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
5225 5226 5227 5228 5229 5230 5231 5232 5233 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5225 class ProvisioningArtifactProperties < Struct.new( :name, :description, :info, :type, :disable_template_validation) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
5225 5226 5227 5228 5229 5230 5231 5232 5233 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5225 class ProvisioningArtifactProperties < Struct.new( :name, :description, :info, :type, :disable_template_validation) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of provisioning artifact.
CLOUD_FORMATION_TEMPLATE
- CloudFormation templateTERRAFORM_OPEN_SOURCE
- Terraform Open Source configuration fileTERRAFORM_CLOUD
- Terraform Cloud configuration fileEXTERNAL
- External configuration file
5225 5226 5227 5228 5229 5230 5231 5232 5233 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5225 class ProvisioningArtifactProperties < Struct.new( :name, :description, :info, :type, :disable_template_validation) SENSITIVE = [] include Aws::Structure end |