File Coverage

blib/lib/Paws/Pinpoint/EmailChannelResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Pinpoint::EmailChannelResponse;
2 1     1   577 use Moose;
  1         3  
  1         12  
3             has ApplicationId => (is => 'ro', isa => 'Str');
4             has CreationDate => (is => 'ro', isa => 'Str');
5             has Enabled => (is => 'ro', isa => 'Bool');
6             has FromAddress => (is => 'ro', isa => 'Str');
7             has Id => (is => 'ro', isa => 'Str');
8             has Identity => (is => 'ro', isa => 'Str');
9             has IsArchived => (is => 'ro', isa => 'Bool');
10             has LastModifiedBy => (is => 'ro', isa => 'Str');
11             has LastModifiedDate => (is => 'ro', isa => 'Str');
12             has Platform => (is => 'ro', isa => 'Str');
13             has RoleArn => (is => 'ro', isa => 'Str');
14             has Version => (is => 'ro', isa => 'Int');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::Pinpoint::EmailChannelResponse
22              
23             =head1 USAGE
24              
25             This class represents one of two things:
26              
27             =head3 Arguments in a call to a service
28              
29             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
30             Each attribute should be used as a named argument in the calls that expect this type of object.
31              
32             As an example, if Att1 is expected to be a Paws::Pinpoint::EmailChannelResponse object:
33              
34             $service_obj->Method(Att1 => { ApplicationId => $value, ..., Version => $value });
35              
36             =head3 Results returned from an API call
37              
38             Use accessors for each attribute. If Att1 is expected to be an Paws::Pinpoint::EmailChannelResponse object:
39              
40             $result = $service_obj->Method(...);
41             $result->Att1->ApplicationId
42              
43             =head1 DESCRIPTION
44              
45             Email Channel Response.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 ApplicationId => Str
51              
52             Application id
53              
54              
55             =head2 CreationDate => Str
56              
57             The date that the settings were last updated in ISO 8601 format.
58              
59              
60             =head2 Enabled => Bool
61              
62             If the channel is enabled for sending messages.
63              
64              
65             =head2 FromAddress => Str
66              
67             The email address used to send emails from.
68              
69              
70             =head2 Id => Str
71              
72             Channel ID. Not used, only for backwards compatibility.
73              
74              
75             =head2 Identity => Str
76              
77             The ARN of an identity verified with SES.
78              
79              
80             =head2 IsArchived => Bool
81              
82             Is this channel archived
83              
84              
85             =head2 LastModifiedBy => Str
86              
87             Who last updated this entry
88              
89              
90             =head2 LastModifiedDate => Str
91              
92             Last date this was updated
93              
94              
95             =head2 Platform => Str
96              
97             Platform type. Will be "EMAIL"
98              
99              
100             =head2 RoleArn => Str
101              
102             The ARN of an IAM Role used to submit events to Mobile Analytics' event
103             ingestion service
104              
105              
106             =head2 Version => Int
107              
108             Version of channel
109              
110              
111              
112             =head1 SEE ALSO
113              
114             This class forms part of L<Paws>, describing an object used in L<Paws::Pinpoint>
115              
116             =head1 BUGS and CONTRIBUTIONS
117              
118             The source code is located here: https://github.com/pplu/aws-sdk-perl
119              
120             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
121              
122             =cut
123