libZSservicesZSamazonka-datasyncZSamazonka-datasync
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DataSync.Types.TaskExecutionResultDetail

Description

 
Synopsis

Documentation

data TaskExecutionResultDetail Source #

Describes the detailed result of a TaskExecution operation. This result includes the time in milliseconds spent in each phase, the status of the task execution, and the errors encountered.

See: newTaskExecutionResultDetail smart constructor.

Constructors

TaskExecutionResultDetail' 

Fields

Instances

Instances details
Eq TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

Read TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

Show TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

Generic TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

Associated Types

type Rep TaskExecutionResultDetail :: Type -> Type #

NFData TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

Hashable TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

FromJSON TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

type Rep TaskExecutionResultDetail Source # 
Instance details

Defined in Amazonka.DataSync.Types.TaskExecutionResultDetail

type Rep TaskExecutionResultDetail = D1 ('MetaData "TaskExecutionResultDetail" "Amazonka.DataSync.Types.TaskExecutionResultDetail" "libZSservicesZSamazonka-datasyncZSamazonka-datasync" 'False) (C1 ('MetaCons "TaskExecutionResultDetail'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "prepareDuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "prepareStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PhaseStatus))) :*: (S1 ('MetaSel ('Just "verifyStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PhaseStatus)) :*: S1 ('MetaSel ('Just "verifyDuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))) :*: ((S1 ('MetaSel ('Just "totalDuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "transferStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PhaseStatus))) :*: (S1 ('MetaSel ('Just "errorCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "transferDuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "errorDetail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newTaskExecutionResultDetail :: TaskExecutionResultDetail Source #

Create a value of TaskExecutionResultDetail with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:prepareDuration:TaskExecutionResultDetail', taskExecutionResultDetail_prepareDuration - The total time in milliseconds that DataSync spent in the PREPARING phase.

$sel:prepareStatus:TaskExecutionResultDetail', taskExecutionResultDetail_prepareStatus - The status of the PREPARING phase.

$sel:verifyStatus:TaskExecutionResultDetail', taskExecutionResultDetail_verifyStatus - The status of the VERIFYING phase.

$sel:verifyDuration:TaskExecutionResultDetail', taskExecutionResultDetail_verifyDuration - The total time in milliseconds that DataSync spent in the VERIFYING phase.

$sel:totalDuration:TaskExecutionResultDetail', taskExecutionResultDetail_totalDuration - The total time in milliseconds that DataSync took to transfer the file from the source to the destination location.

$sel:transferStatus:TaskExecutionResultDetail', taskExecutionResultDetail_transferStatus - The status of the TRANSFERRING phase.

$sel:errorCode:TaskExecutionResultDetail', taskExecutionResultDetail_errorCode - Errors that DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.

$sel:transferDuration:TaskExecutionResultDetail', taskExecutionResultDetail_transferDuration - The total time in milliseconds that DataSync spent in the TRANSFERRING phase.

$sel:errorDetail:TaskExecutionResultDetail', taskExecutionResultDetail_errorDetail - Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.

taskExecutionResultDetail_prepareDuration :: Lens' TaskExecutionResultDetail (Maybe Natural) Source #

The total time in milliseconds that DataSync spent in the PREPARING phase.

taskExecutionResultDetail_verifyDuration :: Lens' TaskExecutionResultDetail (Maybe Natural) Source #

The total time in milliseconds that DataSync spent in the VERIFYING phase.

taskExecutionResultDetail_totalDuration :: Lens' TaskExecutionResultDetail (Maybe Natural) Source #

The total time in milliseconds that DataSync took to transfer the file from the source to the destination location.

taskExecutionResultDetail_errorCode :: Lens' TaskExecutionResultDetail (Maybe Text) Source #

Errors that DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.

taskExecutionResultDetail_transferDuration :: Lens' TaskExecutionResultDetail (Maybe Natural) Source #

The total time in milliseconds that DataSync spent in the TRANSFERRING phase.

taskExecutionResultDetail_errorDetail :: Lens' TaskExecutionResultDetail (Maybe Text) Source #

Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.