Class: Aws::ServiceCatalog::Types::ProvisioningArtifactProperties

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

The description of the provisioning artifact, including how it differs from the previous provisioning artifact.

Returns:

  • (String)


5065
5066
5067
5068
5069
5070
5071
5072
5073
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5065

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type,
  :disable_template_validation)
  SENSITIVE = []
  include Aws::Structure
end

#disable_template_validationBoolean

If set to true, Service Catalog stops validating the specified provisioning artifact even if it is invalid.

Returns:

  • (Boolean)


5065
5066
5067
5068
5069
5070
5071
5072
5073
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5065

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type,
  :disable_template_validation)
  SENSITIVE = []
  include Aws::Structure
end

#infoHash<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]

Returns:

  • (Hash<String,String>)


5065
5066
5067
5068
5069
5070
5071
5072
5073
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5065

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type,
  :disable_template_validation)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.

Returns:

  • (String)


5065
5066
5067
5068
5069
5070
5071
5072
5073
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5065

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type,
  :disable_template_validation)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of provisioning artifact.

  • CLOUD_FORMATION_TEMPLATE - CloudFormation template

  • MARKETPLACE_AMI - Amazon Web Services Marketplace AMI

  • MARKETPLACE_CAR - Amazon Web Services Marketplace Clusters and Amazon Web Services Resources

Returns:

  • (String)


5065
5066
5067
5068
5069
5070
5071
5072
5073
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 5065

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type,
  :disable_template_validation)
  SENSITIVE = []
  include Aws::Structure
end