line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IAM::GetOpenIDConnectProviderResponse; |
3
|
1
|
|
|
1
|
|
410
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has ClientIDList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
5
|
|
|
|
|
|
|
has CreateDate => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has ThumbprintList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
7
|
|
|
|
|
|
|
has Url => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::IAM::GetOpenIDConnectProviderResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ClientIDList => ArrayRef[Str|Undef] |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
A list of client IDs (also known as audiences) that are associated with |
24
|
|
|
|
|
|
|
the specified IAM OIDC provider resource object. For more information, |
25
|
|
|
|
|
|
|
see CreateOpenIDConnectProvider. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 CreateDate => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The date and time when the IAM OIDC provider resource object was |
31
|
|
|
|
|
|
|
created in the AWS account. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 ThumbprintList => ArrayRef[Str|Undef] |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
A list of certificate thumbprints that are associated with the |
37
|
|
|
|
|
|
|
specified IAM OIDC provider resource object. For more information, see |
38
|
|
|
|
|
|
|
CreateOpenIDConnectProvider. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 Url => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The URL that the IAM OIDC provider resource object is associated with. |
44
|
|
|
|
|
|
|
For more information, see CreateOpenIDConnectProvider. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 _request_id => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
|