line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CognitoIdentity::MergeDeveloperIdentities; |
3
|
1
|
|
|
1
|
|
389
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has DestinationUserIdentifier => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has DeveloperProviderName => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has IdentityPoolId => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has SourceUserIdentifier => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
5586
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'MergeDeveloperIdentities'); |
12
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CognitoIdentity::MergeDeveloperIdentitiesResponse'); |
13
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::CognitoIdentity::MergeDeveloperIdentities - Arguments for method MergeDeveloperIdentities on Paws::CognitoIdentity |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 DESCRIPTION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This class represents the parameters used for calling the method MergeDeveloperIdentities on the |
25
|
|
|
|
|
|
|
Amazon Cognito Identity service. Use the attributes of this class |
26
|
|
|
|
|
|
|
as arguments to method MergeDeveloperIdentities. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to MergeDeveloperIdentities. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->MergeDeveloperIdentities(Att1 => $value1, Att2 => $value2, ...); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> DestinationUserIdentifier => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
User identifier for the destination user. The value should be a |
42
|
|
|
|
|
|
|
C<DeveloperUserIdentifier>. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 B<REQUIRED> DeveloperProviderName => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The "domain" by which Cognito will refer to your users. This is a |
49
|
|
|
|
|
|
|
(pseudo) domain name that you provide while creating an identity pool. |
50
|
|
|
|
|
|
|
This name acts as a placeholder that allows your backend and the |
51
|
|
|
|
|
|
|
Cognito service to communicate about the developer provider. For the |
52
|
|
|
|
|
|
|
C<DeveloperProviderName>, you can use letters as well as period (.), |
53
|
|
|
|
|
|
|
underscore (_), and dash (-). |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 B<REQUIRED> IdentityPoolId => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
An identity pool ID in the format REGION:GUID. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 B<REQUIRED> SourceUserIdentifier => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
User identifier for the source user. The value should be a |
66
|
|
|
|
|
|
|
C<DeveloperUserIdentifier>. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 SEE ALSO |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method MergeDeveloperIdentities in L<Paws::CognitoIdentity> |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=cut |
82
|
|
|
|
|
|
|
|