You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ServiceCatalog::Types::CreateProductInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateProductInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  accept_language: "AcceptLanguage",
  name: "ProductViewName", # required
  owner: "ProductViewOwner", # required
  description: "ProductViewShortDescription",
  distributor: "ProductViewOwner",
  support_description: "SupportDescription",
  support_email: "SupportEmail",
  support_url: "SupportUrl",
  product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  provisioning_artifact_parameters: { # required
    name: "ProvisioningArtifactName",
    description: "ProvisioningArtifactDescription",
    info: { # required
      "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
    },
    type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
    disable_template_validation: false,
  },
  idempotency_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#descriptionString

The description of the product.

Returns:

  • (String)

    The description of the product.

#distributorString

The distributor of the product.

Returns:

  • (String)

    The distributor of the product.

#idempotency_tokenString

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

Returns:

  • (String)

    A unique identifier that you provide to ensure idempotency.

#nameString

The name of the product.

Returns:

  • (String)

    The name of the product.

#ownerString

The owner of the product.

Returns:

  • (String)

    The owner of the product.

#product_typeString

The type of product.

Possible values:

  • CLOUD_FORMATION_TEMPLATE
  • MARKETPLACE

Returns:

  • (String)

    The type of product.

#provisioning_artifact_parametersTypes::ProvisioningArtifactProperties

The configuration of the provisioning artifact. The info field accepts ImportFromPhysicalID.

Returns:

#support_descriptionString

The support information about the product.

Returns:

  • (String)

    The support information about the product.

#support_emailString

The contact email for product support.

Returns:

  • (String)

    The contact email for product support.

#support_urlString

The contact URL for product support.

Returns:

  • (String)

    The contact URL for product support.

#tagsArray<Types::Tag>

One or more tags.

Returns: