line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Pinpoint::ActivityResponse; |
2
|
1
|
|
|
1
|
|
282
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has ApplicationId => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has CampaignId => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has End => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Result => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ScheduledStart => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has Start => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has SuccessfulEndpointCount => (is => 'ro', isa => 'Int'); |
12
|
|
|
|
|
|
|
has TimezonesCompletedCount => (is => 'ro', isa => 'Int'); |
13
|
|
|
|
|
|
|
has TimezonesTotalCount => (is => 'ro', isa => 'Int'); |
14
|
|
|
|
|
|
|
has TotalEndpointCount => (is => 'ro', isa => 'Int'); |
15
|
|
|
|
|
|
|
has TreatmentId => (is => 'ro', isa => 'Str'); |
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
### main pod documentation begin ### |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Paws::Pinpoint::ActivityResponse |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 USAGE |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This class represents one of two things: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
31
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Pinpoint::ActivityResponse object: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ApplicationId => $value, ..., TreatmentId => $value }); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head3 Results returned from an API call |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Pinpoint::ActivityResponse object: |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
42
|
|
|
|
|
|
|
$result->Att1->ApplicationId |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 DESCRIPTION |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Activity definition |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 ApplicationId => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The ID of the application to which the campaign applies. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 CampaignId => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The ID of the campaign to which the activity applies. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 End => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The actual time the activity was marked CANCELLED or COMPLETED. |
64
|
|
|
|
|
|
|
Provided in ISO 8601 format. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 Id => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The unique activity ID. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 Result => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Indicates whether the activity succeeded. Valid values: SUCCESS, FAIL |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 ScheduledStart => Str |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The scheduled start time for the activity in ISO 8601 format. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 Start => Str |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The actual start time of the activity in ISO 8601 format. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head2 State => Str |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The state of the activity. Valid values: PENDING, INITIALIZING, |
90
|
|
|
|
|
|
|
RUNNING, PAUSED, CANCELLED, COMPLETED |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head2 SuccessfulEndpointCount => Int |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
The total number of endpoints to which the campaign successfully |
96
|
|
|
|
|
|
|
delivered messages. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head2 TimezonesCompletedCount => Int |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
The total number of timezones completed. |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=head2 TimezonesTotalCount => Int |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
The total number of unique timezones present in the segment. |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
=head2 TotalEndpointCount => Int |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
The total number of endpoints to which the campaign attempts to deliver |
112
|
|
|
|
|
|
|
messages. |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
=head2 TreatmentId => Str |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
The ID of a variation of the campaign used for A/B testing. |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=head1 SEE ALSO |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Pinpoint> |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
=cut |
132
|
|
|
|
|
|
|
|