line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StepFunctions::DescribeStateMachineOutput; |
3
|
1
|
|
|
1
|
|
857
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has CreationDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'creationDate' , required => 1); |
5
|
|
|
|
|
|
|
has Definition => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'definition' , required => 1); |
6
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' , required => 1); |
7
|
|
|
|
|
|
|
has RoleArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'roleArn' , required => 1); |
8
|
|
|
|
|
|
|
has StateMachineArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stateMachineArn' , required => 1); |
9
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status' ); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::StepFunctions::DescribeStateMachineOutput |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 B<REQUIRED> CreationDate => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The date the state machine was created. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 B<REQUIRED> Definition => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The Amazon States Language definition of the state machine. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 B<REQUIRED> Name => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The name of the state machine. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 B<REQUIRED> RoleArn => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the IAM role used for executing this |
40
|
|
|
|
|
|
|
state machine. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 B<REQUIRED> StateMachineArn => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) that identifies the state machine. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 Status => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The current status of the state machine. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Valid values are: C<"ACTIVE">, C<"DELETING"> |
53
|
|
|
|
|
|
|
=head2 _request_id => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |