1
2package Paws::EC2::DescribeMovingAddresses {
3  use Moose;
4  has DryRun => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'dryRun' );
5  has Filters => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Filter]', traits => ['NameInRequest'], request_name => 'filter' );
6  has MaxResults => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maxResults' );
7  has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
8  has PublicIps => (is => 'ro', isa => 'ArrayRef[Str]', traits => ['NameInRequest'], request_name => 'publicIp' );
9
10  use MooseX::ClassAttribute;
11
12  class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeMovingAddresses');
13  class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::DescribeMovingAddressesResult');
14  class_has _result_key => (isa => 'Str', is => 'ro');
15}
161;
17
18### main pod documentation begin ###
19
20=head1 NAME
21
22Paws::EC2::DescribeMovingAddresses - Arguments for method DescribeMovingAddresses on Paws::EC2
23
24=head1 DESCRIPTION
25
26This class represents the parameters used for calling the method DescribeMovingAddresses on the
27Amazon Elastic Compute Cloud service. Use the attributes of this class
28as arguments to method DescribeMovingAddresses.
29
30You shouln't make instances of this class. Each attribute should be used as a named argument in the call to DescribeMovingAddresses.
31
32As an example:
33
34  $service_obj->DescribeMovingAddresses(Att1 => $value1, Att2 => $value2, ...);
35
36Values 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.
37
38=head1 ATTRIBUTES
39
40=head2 DryRun => Bool
41
42
43
44Checks whether you have the required permissions for the action,
45without actually making the request, and provides an error response. If
46you have the required permissions, the error response is
47C<DryRunOperation>. Otherwise, it is C<UnauthorizedOperation>.
48
49
50
51
52
53
54
55
56
57
58=head2 Filters => ArrayRef[Paws::EC2::Filter]
59
60
61
62One or more filters.
63
64=over
65
66=item *
67
68C<moving-status> - The status of the Elastic IP address (C<MovingToVpc>
69| C<RestoringToClassic>).
70
71=back
72
73
74
75
76
77
78
79
80
81
82=head2 MaxResults => Int
83
84
85
86The maximum number of results to return for the request in a single
87page. The remaining results of the initial request can be seen by
88sending another request with the returned C<NextToken> value. This
89value can be between 5 and 1000; if C<MaxResults> is given a value
90outside of this range, an error is returned.
91
92Default: If no value is provided, the default is 1000.
93
94
95
96
97
98
99
100
101
102
103=head2 NextToken => Str
104
105
106
107The token to use to retrieve the next page of results.
108
109
110
111
112
113
114
115
116
117
118=head2 PublicIps => ArrayRef[Str]
119
120
121
122One or more Elastic IP addresses.
123
124
125
126
127
128
129
130
131
132
133
134
135=head1 SEE ALSO
136
137This class forms part of L<Paws>, documenting arguments for method DescribeMovingAddresses in L<Paws::EC2>
138
139=head1 BUGS and CONTRIBUTIONS
140
141The source code is located here: https://github.com/pplu/aws-sdk-perl
142
143Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
144
145=cut
146
147