line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::CognitoIdp::IdentityProviderType; |
2
|
1
|
|
|
1
|
|
291
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
3
|
|
|
|
|
|
|
has AttributeMapping => (is => 'ro', isa => 'Paws::CognitoIdp::AttributeMappingType'); |
4
|
|
|
|
|
|
|
has CreationDate => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has IdpIdentifiers => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
6
|
|
|
|
|
|
|
has LastModifiedDate => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has ProviderDetails => (is => 'ro', isa => 'Paws::CognitoIdp::ProviderDetailsType'); |
8
|
|
|
|
|
|
|
has ProviderName => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has ProviderType => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has UserPoolId => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::CognitoIdp::IdentityProviderType |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 USAGE |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This class represents one of two things: |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
26
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::CognitoIdp::IdentityProviderType object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AttributeMapping => $value, ..., UserPoolId => $value }); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head3 Results returned from an API call |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::CognitoIdp::IdentityProviderType object: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
37
|
|
|
|
|
|
|
$result->Att1->AttributeMapping |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 DESCRIPTION |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
A container for information about an identity provider. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 AttributeMapping => L<Paws::CognitoIdp::AttributeMappingType> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
A mapping of identity provider attributes to standard and custom user |
49
|
|
|
|
|
|
|
pool attributes. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 CreationDate => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The date the identity provider was created. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 IdpIdentifiers => ArrayRef[Str|Undef] |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
A list of identity provider identifiers. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 LastModifiedDate => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The date the identity provider was last modified. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 ProviderDetails => L<Paws::CognitoIdp::ProviderDetailsType> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The identity provider details, such as C<MetadataURL> and |
70
|
|
|
|
|
|
|
C<MetadataFile>. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 ProviderName => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The identity provider name. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head2 ProviderType => Str |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
The identity provider type. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head2 UserPoolId => Str |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The user pool ID. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head1 SEE ALSO |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::CognitoIdp> |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=cut |
100
|
|
|
|
|
|
|
|