File Coverage

blib/lib/Paws/SES/DescribeConfigurationSetResponse.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              
2             package Paws::SES::DescribeConfigurationSetResponse;
3 1     1   464 use Moose;
  1         3  
  1         10  
4             has ConfigurationSet => (is => 'ro', isa => 'Paws::SES::ConfigurationSet');
5             has EventDestinations => (is => 'ro', isa => 'ArrayRef[Paws::SES::EventDestination]');
6             has TrackingOptions => (is => 'ro', isa => 'Paws::SES::TrackingOptions');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SES::DescribeConfigurationSetResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 ConfigurationSet => L<Paws::SES::ConfigurationSet>
21              
22             The configuration set object associated with the specified
23             configuration set.
24              
25              
26             =head2 EventDestinations => ArrayRef[L<Paws::SES::EventDestination>]
27              
28             A list of event destinations associated with the configuration set.
29              
30              
31             =head2 TrackingOptions => L<Paws::SES::TrackingOptions>
32              
33             The name of the custom open and click tracking domain associated with
34             the configuration set.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41