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