File Coverage

blib/lib/Paws/SimpleWorkflow/ActivityTypeDetail.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::ActivityTypeDetail;
3 1     1   623 use Moose;
  1         3  
  1         9  
4             has Configuration => (is => 'ro', isa => 'Paws::SimpleWorkflow::ActivityTypeConfiguration', traits => ['NameInRequest'], request_name => 'configuration' , required => 1);
5             has TypeInfo => (is => 'ro', isa => 'Paws::SimpleWorkflow::ActivityTypeInfo', 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::ActivityTypeDetail
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> Configuration => L<Paws::SimpleWorkflow::ActivityTypeConfiguration>
19              
20             The configuration settings registered with the activity type.
21              
22              
23             =head2 B<REQUIRED> TypeInfo => L<Paws::SimpleWorkflow::ActivityTypeInfo>
24              
25             General information about the activity type.
26              
27             The status of activity type (returned in the ActivityTypeInfo
28             structure) can be one of the following.
29              
30             =over
31              
32             =item * B<REGISTERED>: The type is registered and available. Workers
33             supporting this type should be running.
34              
35             =item * B<DEPRECATED>: The type was deprecated using
36             DeprecateActivityType, but is still in use. You should keep workers
37             supporting this type running. You cannot create new tasks of this type.
38              
39             =back
40              
41              
42              
43             =head2 _request_id => Str
44              
45              
46             =cut
47              
48             1;