| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SNS::GetSubscriptionAttributesResponse; |
|
3
|
1
|
|
|
1
|
|
283
|
use Moose; |
|
|
1
|
|
|
1
|
|
3
|
|
|
|
1
|
|
|
|
|
8
|
|
|
|
1
|
|
|
|
|
266
|
|
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
4
|
|
|
4
|
|
|
|
|
|
|
has Attributes => (is => 'ro', isa => 'Paws::SNS::SubscriptionAttributesMap'); |
|
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::GetSubscriptionAttributesResponse |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Attributes => L<Paws::SNS::SubscriptionAttributesMap> |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A map of the subscription's attributes. Attributes in this map include |
|
21
|
|
|
|
|
|
|
the following: |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=over |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=item * |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
C<SubscriptionArn> -- the subscription's ARN |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=item * |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
C<TopicArn> -- the topic ARN that the subscription is associated with |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item * |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
C<Owner> -- the AWS account ID of the subscription's owner |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item * |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
C<ConfirmationWasAuthenticated> -- true if the subscription |
|
40
|
|
|
|
|
|
|
confirmation request was authenticated |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item * |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
C<DeliveryPolicy> -- the JSON serialization of the subscription's |
|
45
|
|
|
|
|
|
|
delivery policy |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=item * |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
C<EffectiveDeliveryPolicy> -- the JSON serialization of the effective |
|
50
|
|
|
|
|
|
|
delivery policy that takes into account the topic delivery policy and |
|
51
|
|
|
|
|
|
|
account system defaults |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=back |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
|
61
|
|
|
|
|
|
|
|