NAME

Paws::MarketplaceCatalog::StartChangeSet - Arguments for method StartChangeSet on Paws::MarketplaceCatalog

DESCRIPTION

This class represents the parameters used for calling the method StartChangeSet on the AWS Marketplace Catalog Service service. Use the attributes of this class as arguments to method StartChangeSet.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartChangeSet.

SYNOPSIS

my $catalog.marketplace = Paws->service('MarketplaceCatalog');
my $StartChangeSetResponse = $catalog . marketplace->StartChangeSet(
  Catalog   => 'MyCatalog',
  ChangeSet => [
    {
      ChangeType => 'MyChangeType',    # min: 1, max: 255
      Details    => 'MyJson',          # min: 2, max: 16384
      Entity     => {
        Type       => 'MyEntityType',    # min: 1, max: 255
        Identifier => 'MyIdentifier',    # min: 1, max: 255; OPTIONAL
      },
      ChangeName => 'MyChangeName',      # min: 1, max: 72; OPTIONAL
    },
    ...
  ],
  ChangeSetName      => 'MyChangeSetName',         # OPTIONAL
  ClientRequestToken => 'MyClientRequestToken',    # OPTIONAL
);

# Results:
my $ChangeSetArn = $StartChangeSetResponse->ChangeSetArn;
my $ChangeSetId  = $StartChangeSetResponse->ChangeSetId;

# Returns a L<Paws::MarketplaceCatalog::StartChangeSetResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/catalog.marketplace/StartChangeSet

ATTRIBUTES

REQUIRED Catalog => Str

The catalog related to the request. Fixed value: AWSMarketplace

REQUIRED ChangeSet => ArrayRef[Paws::MarketplaceCatalog::Change]

Array of change object.

ChangeSetName => Str

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

ClientRequestToken => Str

A unique token to identify the request to ensure idempotency.

SEE ALSO

This class forms part of Paws, documenting arguments for method StartChangeSet in Paws::MarketplaceCatalog

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues