File Coverage

blib/lib/Paws/DMS/DescribeEvents.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::DMS::DescribeEvents;
3 1     1   552 use Moose;
  1         4  
  1         9  
4             has Duration => (is => 'ro', isa => 'Int');
5             has EndTime => (is => 'ro', isa => 'Str');
6             has EventCategories => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
7             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::DMS::Filter]');
8             has Marker => (is => 'ro', isa => 'Str');
9             has MaxRecords => (is => 'ro', isa => 'Int');
10             has SourceIdentifier => (is => 'ro', isa => 'Str');
11             has SourceType => (is => 'ro', isa => 'Str');
12             has StartTime => (is => 'ro', isa => 'Str');
13              
14 1     1   6864 use MooseX::ClassAttribute;
  1         2  
  1         9  
15              
16             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEvents');
17             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DMS::DescribeEventsResponse');
18             class_has _result_key => (isa => 'Str', is => 'ro');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::DMS::DescribeEvents - Arguments for method DescribeEvents on Paws::DMS
26              
27             =head1 DESCRIPTION
28              
29             This class represents the parameters used for calling the method DescribeEvents on the
30             AWS Database Migration Service service. Use the attributes of this class
31             as arguments to method DescribeEvents.
32              
33             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeEvents.
34              
35             As an example:
36              
37             $service_obj->DescribeEvents(Att1 => $value1, Att2 => $value2, ...);
38              
39             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.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Duration => Int
45              
46             The duration of the events to be listed.
47              
48              
49              
50             =head2 EndTime => Str
51              
52             The end time for the events to be listed.
53              
54              
55              
56             =head2 EventCategories => ArrayRef[Str|Undef]
57              
58             A list of event categories for a source type that you want to subscribe
59             to.
60              
61              
62              
63             =head2 Filters => ArrayRef[L<Paws::DMS::Filter>]
64              
65             Filters applied to the action.
66              
67              
68              
69             =head2 Marker => Str
70              
71             An optional pagination token provided by a previous request. If this
72             parameter is specified, the response includes only records beyond the
73             marker, up to the value specified by C<MaxRecords>.
74              
75              
76              
77             =head2 MaxRecords => Int
78              
79             The maximum number of records to include in the response. If more
80             records exist than the specified C<MaxRecords> value, a pagination
81             token called a marker is included in the response so that the remaining
82             results can be retrieved.
83              
84             Default: 100
85              
86             Constraints: Minimum 20, maximum 100.
87              
88              
89              
90             =head2 SourceIdentifier => Str
91              
92             The identifier of the event source. An identifier must begin with a
93             letter and must contain only ASCII letters, digits, and hyphens. It
94             cannot end with a hyphen or contain two consecutive hyphens.
95              
96              
97              
98             =head2 SourceType => Str
99              
100             The type of AWS DMS resource that generates events.
101              
102             Valid values: replication-instance | migration-task
103              
104             Valid values are: C<"replication-instance">
105              
106             =head2 StartTime => Str
107              
108             The start time for the events to be listed.
109              
110              
111              
112              
113             =head1 SEE ALSO
114              
115             This class forms part of L<Paws>, documenting arguments for method DescribeEvents in L<Paws::DMS>
116              
117             =head1 BUGS and CONTRIBUTIONS
118              
119             The source code is located here: https://github.com/pplu/aws-sdk-perl
120              
121             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
122              
123             =cut
124