PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::DynamoDB::UpdateTable; use Moose; has AttributeDefinitions => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDB::AttributeDefinition]'); has BillingMode => (is => 'ro', isa => 'Str'); has GlobalSecondaryIndexUpdates => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDB::GlobalSecondaryIndexUpdate]'); has ProvisionedThroughput => (is => 'ro', isa => 'Paws::DynamoDB::ProvisionedThroughput'); has ReplicaUpdates => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDB::ReplicationGroupUpdate]'); has SSESpecification => (is => 'ro', isa => 'Paws::DynamoDB::SSESpecification'); has StreamSpecification => (is => 'ro', isa => 'Paws::DynamoDB::StreamSpecification'); has TableName => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateTable'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DynamoDB::UpdateTableOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::DynamoDB::UpdateTable - Arguments for method UpdateTable on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateTable on the L service. Use the attributes of this class as arguments to method UpdateTable. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateTable. =head1 SYNOPSIS my $dynamodb = Paws->service('DynamoDB'); # To modify a table's provisioned throughput # This example increases the provisioned read and write capacity on the Music # table. my $UpdateTableOutput = $dynamodb->UpdateTable( 'ProvisionedThroughput' => { 'ReadCapacityUnits' => 10, 'WriteCapacityUnits' => 10 }, 'TableName' => 'MusicCollection' ); # Results: my $TableDescription = $UpdateTableOutput->TableDescription; # Returns a L 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 L =head1 ATTRIBUTES =head2 AttributeDefinitions => ArrayRef[L] An array of attributes that describe the key schema for the table and indexes. If you are adding a new global secondary index to the table, C must include the key element(s) of the new index. =head2 BillingMode => Str Controls how you are charged for read and write throughput and how you manage capacity. When switching from pay-per-request to provisioned capacity, initial provisioned capacity values must be set. The initial provisioned capacity values are estimated based on the consumed read and write capacity of your table and global secondary indexes over the past 30 minutes. =over =item * C - We recommend using C for predictable workloads. C sets the billing mode to Provisioned Mode (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual). =item * C - We recommend using C for unpredictable workloads. C sets the billing mode to On-Demand Mode (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand). =back Valid values are: C<"PROVISIONED">, C<"PAY_PER_REQUEST"> =head2 GlobalSecondaryIndexUpdates => ArrayRef[L] An array of one or more global secondary indexes for the table. For each index in the array, you can request one action: =over =item * C - add a new global secondary index to the table. =item * C - modify the provisioned throughput settings of an existing global secondary index. =item * C - remove a global secondary index from the table. =back You can create or delete only one global secondary index per C operation. For more information, see Managing Global Secondary Indexes (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.OnlineOps.html) in the I. =head2 ProvisionedThroughput => L The new provisioned throughput settings for the specified table or index. =head2 ReplicaUpdates => ArrayRef[L] A list of replica update actions (create, delete, or update) for the table. This property only applies to Version 2019.11.21 (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html) of global tables. =head2 SSESpecification => L The new server-side encryption settings for the specified table. =head2 StreamSpecification => L Represents the DynamoDB Streams configuration for the table. You receive a C if you try to enable a stream on a table that already has a stream, or if you try to disable a stream on a table that doesn't have a stream. =head2 B TableName => Str The name of the table to be updated. =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateTable in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut