line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Config::GetResourceConfigHistory; |
3
|
1
|
|
|
1
|
|
290
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ChronologicalOrder => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'chronologicalOrder' ); |
5
|
|
|
|
|
|
|
has EarlierTime => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'earlierTime' ); |
6
|
|
|
|
|
|
|
has LaterTime => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'laterTime' ); |
7
|
|
|
|
|
|
|
has Limit => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'limit' ); |
8
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' ); |
9
|
|
|
|
|
|
|
has ResourceId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'resourceId' , required => 1); |
10
|
|
|
|
|
|
|
has ResourceType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'resourceType' , required => 1); |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
5425
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetResourceConfigHistory'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Config::GetResourceConfigHistoryResponse'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::Config::GetResourceConfigHistory - Arguments for method GetResourceConfigHistory on Paws::Config |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method GetResourceConfigHistory on the |
28
|
|
|
|
|
|
|
AWS Config service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method GetResourceConfigHistory. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetResourceConfigHistory. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->GetResourceConfigHistory(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
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. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 ChronologicalOrder => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The chronological order for configuration items listed. By default the |
45
|
|
|
|
|
|
|
results are listed in reverse chronological order. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Valid values are: C<"Reverse">, C<"Forward"> |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 EarlierTime => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The time stamp that indicates an earlier time. If not specified, the |
52
|
|
|
|
|
|
|
action returns paginated results that contain configuration items that |
53
|
|
|
|
|
|
|
start from when the first configuration item was recorded. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 LaterTime => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The time stamp that indicates a later time. If not specified, current |
60
|
|
|
|
|
|
|
time is taken. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 Limit => Int |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The maximum number of configuration items returned on each page. The |
67
|
|
|
|
|
|
|
default is 10. You cannot specify a limit greater than 100. If you |
68
|
|
|
|
|
|
|
specify 0, AWS Config uses the default. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 NextToken => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The C<nextToken> string returned on a previous page that you use to get |
75
|
|
|
|
|
|
|
the next page of results in a paginated response. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResourceId => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The ID of the resource (for example., C<sg-xxxxxx>). |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResourceType => Str |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
The resource type. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Valid values are: C<"AWS::EC2::CustomerGateway">, C<"AWS::EC2::EIP">, C<"AWS::EC2::Host">, C<"AWS::EC2::Instance">, C<"AWS::EC2::InternetGateway">, C<"AWS::EC2::NetworkAcl">, C<"AWS::EC2::NetworkInterface">, C<"AWS::EC2::RouteTable">, C<"AWS::EC2::SecurityGroup">, C<"AWS::EC2::Subnet">, C<"AWS::CloudTrail::Trail">, C<"AWS::EC2::Volume">, C<"AWS::EC2::VPC">, C<"AWS::EC2::VPNConnection">, C<"AWS::EC2::VPNGateway">, C<"AWS::IAM::Group">, C<"AWS::IAM::Policy">, C<"AWS::IAM::Role">, C<"AWS::IAM::User">, C<"AWS::ACM::Certificate">, C<"AWS::RDS::DBInstance">, C<"AWS::RDS::DBSubnetGroup">, C<"AWS::RDS::DBSecurityGroup">, C<"AWS::RDS::DBSnapshot">, C<"AWS::RDS::EventSubscription">, C<"AWS::ElasticLoadBalancingV2::LoadBalancer">, C<"AWS::S3::Bucket">, C<"AWS::SSM::ManagedInstanceInventory">, C<"AWS::Redshift::Cluster">, C<"AWS::Redshift::ClusterSnapshot">, C<"AWS::Redshift::ClusterParameterGroup">, C<"AWS::Redshift::ClusterSecurityGroup">, C<"AWS::Redshift::ClusterSubnetGroup">, C<"AWS::Redshift::EventSubscription">, C<"AWS::CloudWatch::Alarm">, C<"AWS::CloudFormation::Stack">, C<"AWS::DynamoDB::Table">, C<"AWS::AutoScaling::AutoScalingGroup">, C<"AWS::AutoScaling::LaunchConfiguration">, C<"AWS::AutoScaling::ScalingPolicy">, C<"AWS::AutoScaling::ScheduledAction"> |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head1 SEE ALSO |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method GetResourceConfigHistory in L<Paws::Config> |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=cut |
103
|
|
|
|
|
|
|
|