File Coverage

blib/lib/Paws/IAM/ServiceSpecificCredentialMetadata.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::IAM::ServiceSpecificCredentialMetadata;
2 1     1   627 use Moose;
  1         3  
  1         10  
3             has CreateDate => (is => 'ro', isa => 'Str', required => 1);
4             has ServiceName => (is => 'ro', isa => 'Str', required => 1);
5             has ServiceSpecificCredentialId => (is => 'ro', isa => 'Str', required => 1);
6             has ServiceUserName => (is => 'ro', isa => 'Str', required => 1);
7             has Status => (is => 'ro', isa => 'Str', required => 1);
8             has UserName => (is => 'ro', isa => 'Str', required => 1);
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::IAM::ServiceSpecificCredentialMetadata
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::IAM::ServiceSpecificCredentialMetadata object:
27              
28             $service_obj->Method(Att1 => { CreateDate => $value, ..., UserName => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::IAM::ServiceSpecificCredentialMetadata object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->CreateDate
36              
37             =head1 DESCRIPTION
38              
39             Contains additional details about a service-specific credential.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 B<REQUIRED> CreateDate => Str
45              
46             The date and time, in ISO 8601 date-time format, when the
47             service-specific credential were created.
48              
49              
50             =head2 B<REQUIRED> ServiceName => Str
51              
52             The name of the service associated with the service-specific
53             credential.
54              
55              
56             =head2 B<REQUIRED> ServiceSpecificCredentialId => Str
57              
58             The unique identifier for the service-specific credential.
59              
60              
61             =head2 B<REQUIRED> ServiceUserName => Str
62              
63             The generated user name for the service-specific credential.
64              
65              
66             =head2 B<REQUIRED> Status => Str
67              
68             The status of the service-specific credential. C<Active> means the key
69             is valid for API calls, while C<Inactive> means it is not.
70              
71              
72             =head2 B<REQUIRED> UserName => Str
73              
74             The name of the IAM user associated with the service-specific
75             credential.
76              
77              
78              
79             =head1 SEE ALSO
80              
81             This class forms part of L<Paws>, describing an object used in L<Paws::IAM>
82              
83             =head1 BUGS and CONTRIBUTIONS
84              
85             The source code is located here: https://github.com/pplu/aws-sdk-perl
86              
87             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
88              
89             =cut
90