line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CognitoSync::GetBulkPublishDetailsResponse; |
3
|
1
|
|
|
1
|
|
335
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has BulkPublishCompleteTime => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has BulkPublishStartTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has BulkPublishStatus => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has FailureMessage => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has IdentityPoolId => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::CognitoSync::GetBulkPublishDetailsResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 BulkPublishCompleteTime => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
If BulkPublishStatus is SUCCEEDED, the time the last bulk publish |
25
|
|
|
|
|
|
|
operation completed. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 BulkPublishStartTime => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The date/time at which the last bulk publish was initiated. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 BulkPublishStatus => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Status of the last bulk publish operation, valid values are: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
NOT_STARTED - No bulk publish has been requested for this identity pool |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
IN_PROGRESS - Data is being published to the configured stream |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
SUCCEEDED - All data for the identity pool has been published to the |
42
|
|
|
|
|
|
|
configured stream |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
FAILED - Some portion of the data has failed to publish, check |
45
|
|
|
|
|
|
|
FailureMessage for the cause. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Valid values are: C<"NOT_STARTED">, C<"IN_PROGRESS">, C<"FAILED">, C<"SUCCEEDED"> |
48
|
|
|
|
|
|
|
=head2 FailureMessage => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
If BulkPublishStatus is FAILED this field will contain the error |
51
|
|
|
|
|
|
|
message that caused the bulk publish to fail. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 IdentityPoolId => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
A name-spaced GUID (for example, |
57
|
|
|
|
|
|
|
us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon |
58
|
|
|
|
|
|
|
Cognito. GUID generation is unique within a region. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 _request_id => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|