line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SNS::GetTopicAttributesResponse; |
3
|
1
|
|
|
1
|
|
351
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
266
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Attributes => (is => 'ro', isa => 'Paws::SNS::TopicAttributesMap'); |
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::GetTopicAttributesResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Attributes => L<Paws::SNS::TopicAttributesMap> |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A map of the topic's attributes. Attributes in this map include the |
21
|
|
|
|
|
|
|
following: |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=over |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=item * |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
C<TopicArn> -- the topic's ARN |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=item * |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
C<Owner> -- the AWS account ID of the topic's owner |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item * |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
C<Policy> -- the JSON serialization of the topic's access control |
36
|
|
|
|
|
|
|
policy |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=item * |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
C<DisplayName> -- the human-readable name used in the "From" field for |
41
|
|
|
|
|
|
|
notifications to email and email-json endpoints |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item * |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
C<SubscriptionsPending> -- the number of subscriptions pending |
46
|
|
|
|
|
|
|
confirmation on this topic |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item * |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
C<SubscriptionsConfirmed> -- the number of confirmed subscriptions on |
51
|
|
|
|
|
|
|
this topic |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=item * |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
C<SubscriptionsDeleted> -- the number of deleted subscriptions on this |
56
|
|
|
|
|
|
|
topic |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item * |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
C<DeliveryPolicy> -- the JSON serialization of the topic's delivery |
61
|
|
|
|
|
|
|
policy |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=item * |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
C<EffectiveDeliveryPolicy> -- the JSON serialization of the effective |
66
|
|
|
|
|
|
|
delivery policy that takes into account system defaults |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=back |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 _request_id => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|