File Coverage

blib/lib/Paws/DynamoDB/GlobalSecondaryIndexUpdate.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::DynamoDB::GlobalSecondaryIndexUpdate;
2 1     1   545 use Moose;
  1         5  
  1         11  
3             has Create => (is => 'ro', isa => 'Paws::DynamoDB::CreateGlobalSecondaryIndexAction');
4             has Delete => (is => 'ro', isa => 'Paws::DynamoDB::DeleteGlobalSecondaryIndexAction');
5             has Update => (is => 'ro', isa => 'Paws::DynamoDB::UpdateGlobalSecondaryIndexAction');
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::DynamoDB::GlobalSecondaryIndexUpdate
13              
14             =head1 USAGE
15              
16             This class represents one of two things:
17              
18             =head3 Arguments in a call to a service
19              
20             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
21             Each attribute should be used as a named argument in the calls that expect this type of object.
22              
23             As an example, if Att1 is expected to be a Paws::DynamoDB::GlobalSecondaryIndexUpdate object:
24              
25             $service_obj->Method(Att1 => { Create => $value, ..., Update => $value });
26              
27             =head3 Results returned from an API call
28              
29             Use accessors for each attribute. If Att1 is expected to be an Paws::DynamoDB::GlobalSecondaryIndexUpdate object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->Create
33              
34             =head1 DESCRIPTION
35              
36             Represents one of the following:
37              
38             =over
39              
40             =item *
41              
42             A new global secondary index to be added to an existing table.
43              
44             =item *
45              
46             New provisioned throughput parameters for an existing global secondary
47             index.
48              
49             =item *
50              
51             An existing global secondary index to be removed from an existing
52             table.
53              
54             =back
55              
56              
57             =head1 ATTRIBUTES
58              
59              
60             =head2 Create => L<Paws::DynamoDB::CreateGlobalSecondaryIndexAction>
61              
62             The parameters required for creating a global secondary index on an
63             existing table:
64              
65             =over
66              
67             =item *
68              
69             C<IndexName>
70              
71             =item *
72              
73             C<KeySchema>
74              
75             =item *
76              
77             C<AttributeDefinitions>
78              
79             =item *
80              
81             C<Projection>
82              
83             =item *
84              
85             C<ProvisionedThroughput>
86              
87             =back
88              
89              
90              
91             =head2 Delete => L<Paws::DynamoDB::DeleteGlobalSecondaryIndexAction>
92              
93             The name of an existing global secondary index to be removed.
94              
95              
96             =head2 Update => L<Paws::DynamoDB::UpdateGlobalSecondaryIndexAction>
97              
98             The name of an existing global secondary index, along with new
99             provisioned throughput settings to be applied to that index.
100              
101              
102              
103             =head1 SEE ALSO
104              
105             This class forms part of L<Paws>, describing an object used in L<Paws::DynamoDB>
106              
107             =head1 BUGS and CONTRIBUTIONS
108              
109             The source code is located here: https://github.com/pplu/aws-sdk-perl
110              
111             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
112              
113             =cut
114