File Coverage

blib/lib/Paws/SimpleWorkflow/WorkflowTypeDetail.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::SimpleWorkflow::WorkflowTypeDetail;
3 1     1   646 use Moose;
  1         4  
  1         10  
4             has Configuration => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowTypeConfiguration', traits => ['NameInRequest'], request_name => 'configuration' , required => 1);
5             has TypeInfo => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowTypeInfo', traits => ['NameInRequest'], request_name => 'typeInfo' , required => 1);
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SimpleWorkflow::WorkflowTypeDetail
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> Configuration => L<Paws::SimpleWorkflow::WorkflowTypeConfiguration>
19              
20             Configuration settings of the workflow type registered through
21             RegisterWorkflowType
22              
23              
24             =head2 B<REQUIRED> TypeInfo => L<Paws::SimpleWorkflow::WorkflowTypeInfo>
25              
26             General information about the workflow type.
27              
28             The status of the workflow type (returned in the WorkflowTypeInfo
29             structure) can be one of the following.
30              
31             =over
32              
33             =item * B<REGISTERED>: The type is registered and available. Workers
34             supporting this type should be running.
35              
36             =item * B<DEPRECATED>: The type was deprecated using
37             DeprecateWorkflowType, but is still in use. You should keep workers
38             supporting this type running. You cannot create new workflow executions
39             of this type.
40              
41             =back
42              
43              
44              
45             =head2 _request_id => Str
46              
47              
48             =cut
49              
50             1;