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

Class: Aws::MarketplaceCatalog::Types::StartChangeSetRequest

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

Overview

Note:

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

{
  catalog: "Catalog", # required
  change_set: [ # required
    {
      change_type: "ChangeType", # required
      entity: { # required
        type: "EntityType", # required
        identifier: "Identifier",
      },
      details: "Json", # required
    },
  ],
  change_set_name: "ChangeSetName",
  client_request_token: "ClientRequestToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#catalogString

The catalog related to the request. Fixed value: AWSMarketplace

Returns:

  • (String)

    The catalog related to the request.

#change_setArray<Types::Change>

Array of change object.

Returns:

#change_set_nameString

Optional case sensitive string of up to 100 ASCII characters. The change set name can be used to filter the list of change sets.

Returns:

  • (String)

    Optional case sensitive string of up to 100 ASCII characters.

#client_request_tokenString

A unique token to identify the request to ensure idempotency.

Returns:

  • (String)

    A unique token to identify the request to ensure idempotency.