line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SNS::AddPermission; |
3
|
1
|
|
|
1
|
|
276
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
345
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ActionName => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1); |
5
|
|
|
|
|
|
|
has AWSAccountId => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1); |
6
|
|
|
|
|
|
|
has Label => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has TopicArn => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
5669
|
use MooseX::ClassAttribute; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
5505
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'AddPermission'); |
12
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); |
13
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::SNS::AddPermission - Arguments for method AddPermission on Paws::SNS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 DESCRIPTION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This class represents the parameters used for calling the method AddPermission on the |
25
|
|
|
|
|
|
|
Amazon Simple Notification Service service. Use the attributes of this class |
26
|
|
|
|
|
|
|
as arguments to method AddPermission. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AddPermission. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->AddPermission(Att1 => $value1, Att2 => $value2, ...); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> ActionName => ArrayRef[Str|Undef] |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The action you want to allow for the specified principal(s). |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Valid values: any Amazon SNS action name. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 B<REQUIRED> AWSAccountId => ArrayRef[Str|Undef] |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The AWS account IDs of the users (principals) who will be given access |
50
|
|
|
|
|
|
|
to the specified actions. The users must have AWS accounts, but do not |
51
|
|
|
|
|
|
|
need to be signed up for this service. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 B<REQUIRED> Label => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
A unique identifier for the new policy statement. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 B<REQUIRED> TopicArn => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The ARN of the topic whose access control policy you wish to modify. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 SEE ALSO |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method AddPermission in L<Paws::SNS> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=cut |
79
|
|
|
|
|
|
|
|