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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass ProvisioningArtifactProperties data as a hash:

{
  name: "ProvisioningArtifactName",
  description: "ProvisioningArtifactDescription",
  info: { # required
    "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
  },
  type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
}

Information about a provisioning artifact (also known as a version) for a product.

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)


4577
4578
4579
4580
4581
4582
4583
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4577

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type)
  include Aws::Structure
end

#infoHash<String,String>

The URL of the CloudFormation template in Amazon S3. Specify the URL in JSON format as follows:

‘“LoadTemplateFromURL”: “s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/…”`

Returns:

  • (Hash<String,String>)


4577
4578
4579
4580
4581
4582
4583
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4577

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type)
  include Aws::Structure
end

#nameString

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

Returns:

  • (String)


4577
4578
4579
4580
4581
4582
4583
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4577

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type)
  include Aws::Structure
end

#typeString

The type of provisioning artifact.

  • ‘CLOUD_FORMATION_TEMPLATE` - AWS CloudFormation template

  • ‘MARKETPLACE_AMI` - AWS Marketplace AMI

  • ‘MARKETPLACE_CAR` - AWS Marketplace Clusters and AWS Resources

Returns:

  • (String)


4577
4578
4579
4580
4581
4582
4583
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4577

class ProvisioningArtifactProperties < Struct.new(
  :name,
  :description,
  :info,
  :type)
  include Aws::Structure
end