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   485 use Moose;
  1         2  
  1         9  
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 *
34              
35             C<REGISTERED> E<ndash> The type is registered and available. Workers
36             supporting this type should be running.
37              
38             =item *
39              
40             C<DEPRECATED> E<ndash> The type was deprecated using
41             DeprecateWorkflowType, but is still in use. You should keep workers
42             supporting this type running. You cannot create new workflow executions
43             of this type.
44              
45             =back
46              
47              
48              
49             =head2 _request_id => Str
50              
51              
52             =cut
53              
54             1;