File Coverage

blib/lib/Paws/SSM/InstanceInformation.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::SSM::InstanceInformation;
2 1     1   613 use Moose;
  1         2  
  1         10  
3             has ActivationId => (is => 'ro', isa => 'Str');
4             has AgentVersion => (is => 'ro', isa => 'Str');
5             has AssociationOverview => (is => 'ro', isa => 'Paws::SSM::InstanceAggregatedAssociationOverview');
6             has AssociationStatus => (is => 'ro', isa => 'Str');
7             has ComputerName => (is => 'ro', isa => 'Str');
8             has IamRole => (is => 'ro', isa => 'Str');
9             has InstanceId => (is => 'ro', isa => 'Str');
10             has IPAddress => (is => 'ro', isa => 'Str');
11             has IsLatestVersion => (is => 'ro', isa => 'Bool');
12             has LastAssociationExecutionDate => (is => 'ro', isa => 'Str');
13             has LastPingDateTime => (is => 'ro', isa => 'Str');
14             has LastSuccessfulAssociationExecutionDate => (is => 'ro', isa => 'Str');
15             has Name => (is => 'ro', isa => 'Str');
16             has PingStatus => (is => 'ro', isa => 'Str');
17             has PlatformName => (is => 'ro', isa => 'Str');
18             has PlatformType => (is => 'ro', isa => 'Str');
19             has PlatformVersion => (is => 'ro', isa => 'Str');
20             has RegistrationDate => (is => 'ro', isa => 'Str');
21             has ResourceType => (is => 'ro', isa => 'Str');
22             1;
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::SSM::InstanceInformation
29              
30             =head1 USAGE
31              
32             This class represents one of two things:
33              
34             =head3 Arguments in a call to a service
35              
36             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
37             Each attribute should be used as a named argument in the calls that expect this type of object.
38              
39             As an example, if Att1 is expected to be a Paws::SSM::InstanceInformation object:
40              
41             $service_obj->Method(Att1 => { ActivationId => $value, ..., ResourceType => $value });
42              
43             =head3 Results returned from an API call
44              
45             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::InstanceInformation object:
46              
47             $result = $service_obj->Method(...);
48             $result->Att1->ActivationId
49              
50             =head1 DESCRIPTION
51              
52             Describes a filter for a specific list of instances.
53              
54             =head1 ATTRIBUTES
55              
56              
57             =head2 ActivationId => Str
58              
59             The activation ID created by Systems Manager when the server or VM was
60             registered.
61              
62              
63             =head2 AgentVersion => Str
64              
65             The version of the SSM Agent running on your Linux instance.
66              
67              
68             =head2 AssociationOverview => L<Paws::SSM::InstanceAggregatedAssociationOverview>
69              
70             Information about the association.
71              
72              
73             =head2 AssociationStatus => Str
74              
75             The status of the association.
76              
77              
78             =head2 ComputerName => Str
79              
80             The fully qualified host name of the managed instance.
81              
82              
83             =head2 IamRole => Str
84              
85             The Amazon Identity and Access Management (IAM) role assigned to EC2
86             instances or managed instances.
87              
88              
89             =head2 InstanceId => Str
90              
91             The instance ID.
92              
93              
94             =head2 IPAddress => Str
95              
96             The IP address of the managed instance.
97              
98              
99             =head2 IsLatestVersion => Bool
100              
101             Indicates whether latest version of the SSM Agent is running on your
102             instance.
103              
104              
105             =head2 LastAssociationExecutionDate => Str
106              
107             The date the association was last executed.
108              
109              
110             =head2 LastPingDateTime => Str
111              
112             The date and time when agent last pinged Systems Manager service.
113              
114              
115             =head2 LastSuccessfulAssociationExecutionDate => Str
116              
117             The last date the association was successfully run.
118              
119              
120             =head2 Name => Str
121              
122             The name of the managed instance.
123              
124              
125             =head2 PingStatus => Str
126              
127             Connection status of the SSM Agent.
128              
129              
130             =head2 PlatformName => Str
131              
132             The name of the operating system platform running on your instance.
133              
134              
135             =head2 PlatformType => Str
136              
137             The operating system platform type.
138              
139              
140             =head2 PlatformVersion => Str
141              
142             The version of the OS platform running on your instance.
143              
144              
145             =head2 RegistrationDate => Str
146              
147             The date the server or VM was registered with AWS as a managed
148             instance.
149              
150              
151             =head2 ResourceType => Str
152              
153             The type of instance. Instances are either EC2 instances or managed
154             instances.
155              
156              
157              
158             =head1 SEE ALSO
159              
160             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
161              
162             =head1 BUGS and CONTRIBUTIONS
163              
164             The source code is located here: https://github.com/pplu/aws-sdk-perl
165              
166             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
167              
168             =cut
169