line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DataPipeline::PutPipelineDefinitionOutput; |
3
|
1
|
|
|
1
|
|
484
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Errored => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'errored' , required => 1); |
5
|
|
|
|
|
|
|
has ValidationErrors => (is => 'ro', isa => 'ArrayRef[Paws::DataPipeline::ValidationError]', traits => ['NameInRequest'], request_name => 'validationErrors' ); |
6
|
|
|
|
|
|
|
has ValidationWarnings => (is => 'ro', isa => 'ArrayRef[Paws::DataPipeline::ValidationWarning]', traits => ['NameInRequest'], request_name => 'validationWarnings' ); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::DataPipeline::PutPipelineDefinitionOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 B<REQUIRED> Errored => Bool |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Indicates whether there were validation errors, and the pipeline |
22
|
|
|
|
|
|
|
definition is stored but cannot be activated until you correct the |
23
|
|
|
|
|
|
|
pipeline and call C<PutPipelineDefinition> to commit the corrected |
24
|
|
|
|
|
|
|
pipeline. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 ValidationErrors => ArrayRef[L<Paws::DataPipeline::ValidationError>] |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The validation errors that are associated with the objects defined in |
30
|
|
|
|
|
|
|
C<pipelineObjects>. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 ValidationWarnings => ArrayRef[L<Paws::DataPipeline::ValidationWarning>] |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The validation warnings that are associated with the objects defined in |
36
|
|
|
|
|
|
|
C<pipelineObjects>. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 _request_id => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |