line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SNS::GetEndpointAttributesResponse; |
3
|
1
|
|
|
1
|
|
898
|
use Moose; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
13
|
|
4
|
|
|
|
|
|
|
has Attributes => (is => 'ro', isa => 'Paws::SNS::MapStringToString'); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::SNS::GetEndpointAttributesResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Attributes => L<Paws::SNS::MapStringToString> |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Attributes include the following: |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=over |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=item * |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
C<CustomUserData> -- arbitrary user data to associate with the |
27
|
|
|
|
|
|
|
endpoint. Amazon SNS does not use this data. The data must be in UTF-8 |
28
|
|
|
|
|
|
|
format and less than 2KB. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=item * |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
C<Enabled> -- flag that enables/disables delivery to the endpoint. |
33
|
|
|
|
|
|
|
Amazon SNS will set this to false when a notification service indicates |
34
|
|
|
|
|
|
|
to Amazon SNS that the endpoint is invalid. Users can set it back to |
35
|
|
|
|
|
|
|
true, typically after updating Token. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item * |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
C<Token> -- device token, also referred to as a registration id, for an |
40
|
|
|
|
|
|
|
app and mobile device. This is returned from the notification service |
41
|
|
|
|
|
|
|
when an app and mobile device are registered with the notification |
42
|
|
|
|
|
|
|
service. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=back |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 _request_id => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|