PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::SimpleWorkflow::WorkflowExecutionInfo; use Moose; has CancelRequested => (is => 'ro', isa => 'Bool', request_name => 'cancelRequested', traits => ['NameInRequest']); has CloseStatus => (is => 'ro', isa => 'Str', request_name => 'closeStatus', traits => ['NameInRequest']); has CloseTimestamp => (is => 'ro', isa => 'Str', request_name => 'closeTimestamp', traits => ['NameInRequest']); has Execution => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecution', request_name => 'execution', traits => ['NameInRequest'], required => 1); has ExecutionStatus => (is => 'ro', isa => 'Str', request_name => 'executionStatus', traits => ['NameInRequest'], required => 1); has Parent => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecution', request_name => 'parent', traits => ['NameInRequest']); has StartTimestamp => (is => 'ro', isa => 'Str', request_name => 'startTimestamp', traits => ['NameInRequest'], required => 1); has TagList => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'tagList', traits => ['NameInRequest']); has WorkflowType => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowType', request_name => 'workflowType', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::SimpleWorkflow::WorkflowExecutionInfo =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SimpleWorkflow::WorkflowExecutionInfo object: $service_obj->Method(Att1 => { CancelRequested => $value, ..., WorkflowType => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SimpleWorkflow::WorkflowExecutionInfo object: $result = $service_obj->Method(...); $result->Att1->CancelRequested =head1 DESCRIPTION Contains information about a workflow execution. =head1 ATTRIBUTES =head2 CancelRequested => Bool Set to true if a cancellation is requested for this workflow execution. =head2 CloseStatus => Str If the execution status is closed then this specifies how the execution was closed: =over =item * C E the execution was successfully completed. =item * C E the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed. =item * C E the execution was force terminated. =item * C E the execution failed to complete. =item * C E the execution did not complete in the alloted time and was automatically timed out. =item * C E the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow. =back =head2 CloseTimestamp => Str The time when the workflow execution was closed. Set only if the execution status is CLOSED. =head2 B Execution => L The workflow execution this information is about. =head2 B ExecutionStatus => Str The current status of the execution. =head2 Parent => L If this workflow execution is a child of another execution then contains the workflow execution that started this execution. =head2 B StartTimestamp => Str The time when the execution was started. =head2 TagList => ArrayRef[Str|Undef] The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags. =head2 B WorkflowType => L The type of the workflow execution. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut