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

Class: Aws::ServiceCatalog::Types::UpdateProductInput

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

Overview

Note:

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

{
  accept_language: "AcceptLanguage",
  id: "Id", # required
  name: "ProductViewName",
  owner: "ProductViewOwner",
  description: "ProductViewShortDescription",
  distributor: "ProductViewOwner",
  support_description: "SupportDescription",
  support_email: "SupportEmail",
  support_url: "SupportUrl",
  add_tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  remove_tags: ["TagKey"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#add_tagsArray<Types::Tag>

The tags to add to the product.

Returns:

  • (Array<Types::Tag>)

    The tags to add to the product.

#descriptionString

The updated description of the product.

Returns:

  • (String)

    The updated description of the product.

#distributorString

The updated distributor of the product.

Returns:

  • (String)

    The updated distributor of the product.

#idString

The product identifier.

Returns:

  • (String)

    The product identifier.

#nameString

The updated product name.

Returns:

  • (String)

    The updated product name.

#ownerString

The updated owner of the product.

Returns:

  • (String)

    The updated owner of the product.

#remove_tagsArray<String>

The tags to remove from the product.

Returns:

  • (Array<String>)

    The tags to remove from the product.

#support_descriptionString

The updated support description for the product.

Returns:

  • (String)

    The updated support description for the product.

#support_emailString

The updated support email for the product.

Returns:

  • (String)

    The updated support email for the product.

#support_urlString

The updated support URL for the product.

Returns:

  • (String)

    The updated support URL for the product.