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` package Paws::IoTJobsData::UpdateJobExecution; use Moose; has ExecutionNumber => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'executionNumber'); has ExpectedVersion => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'expectedVersion'); has IncludeJobDocument => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'includeJobDocument'); has IncludeJobExecutionState => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'includeJobExecutionState'); has JobId => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'jobId', required => 1); has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status', required => 1); has StatusDetails => (is => 'ro', isa => 'Paws::IoTJobsData::DetailsMap', traits => ['NameInRequest'], request_name => 'statusDetails'); has StepTimeoutInMinutes => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'stepTimeoutInMinutes'); has ThingName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'thingName', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateJobExecution'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/things/{thingName}/jobs/{jobId}'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IoTJobsData::UpdateJobExecutionResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::IoTJobsData::UpdateJobExecution - Arguments for method UpdateJobExecution on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateJobExecution on the L service. Use the attributes of this class as arguments to method UpdateJobExecution. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateJobExecution. =head1 SYNOPSIS my $data.jobs.iot = Paws->service('IoTJobsData'); my $UpdateJobExecutionResponse = $data . jobs . iot->UpdateJobExecution( JobId => 'MyJobId', Status => 'QUEUED', ThingName => 'MyThingName', ExecutionNumber => 1, # OPTIONAL ExpectedVersion => 1, # OPTIONAL IncludeJobDocument => 1, # OPTIONAL IncludeJobExecutionState => 1, # OPTIONAL StatusDetails => { 'MyDetailsKey' => 'MyDetailsValue', # key: min: 1, max: 128, value: min: 1, max: 1024 }, # OPTIONAL StepTimeoutInMinutes => 1, # OPTIONAL ); # Results: my $ExecutionState = $UpdateJobExecutionResponse->ExecutionState; my $JobDocument = $UpdateJobExecutionResponse->JobDocument; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 ExecutionNumber => Int Optional. A number that identifies a particular job execution on a particular device. =head2 ExpectedVersion => Int Optional. The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in Jobs does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain the job execution status data.) =head2 IncludeJobDocument => Bool Optional. When set to true, the response contains the job document. The default is false. =head2 IncludeJobExecutionState => Bool Optional. When included and set to true, the response contains the JobExecutionState data. The default is false. =head2 B JobId => Str The unique identifier assigned to this job when it was created. =head2 B Status => Str The new status for the job execution (IN_PROGRESS, FAILED, SUCCESS, or REJECTED). This must be specified on every update. Valid values are: C<"QUEUED">, C<"IN_PROGRESS">, C<"SUCCEEDED">, C<"FAILED">, C<"TIMED_OUT">, C<"REJECTED">, C<"REMOVED">, C<"CANCELED"> =head2 StatusDetails => L Optional. A collection of name/value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged. =head2 StepTimeoutInMinutes => Int Specifies the amount of time this device has to finish execution of this job. If the job execution status is not set to a terminal state before this timer expires, or before the timer is reset (by again calling C, setting the status to C and specifying a new timeout value in this field) the job execution status will be automatically set to C. Note that setting or resetting this timeout has no effect on that job execution timeout which may have been specified when the job was created (C using field C). =head2 B ThingName => Str The name of the thing associated with the device. =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateJobExecution in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut