line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SNS::ListEndpointsByPlatformApplicationResponse; |
3
|
1
|
|
|
1
|
|
628
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
19
|
|
4
|
|
|
|
|
|
|
has Endpoints => (is => 'ro', isa => 'ArrayRef[Paws::SNS::Endpoint]'); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::SNS::ListEndpointsByPlatformApplicationResponse |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Endpoints => ArrayRef[L<Paws::SNS::Endpoint>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Endpoints returned for ListEndpointsByPlatformApplication action. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 NextToken => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
NextToken string is returned when calling |
27
|
|
|
|
|
|
|
ListEndpointsByPlatformApplication action if additional records are |
28
|
|
|
|
|
|
|
available after the first page results. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|