libZSservicesZSamazonka-appflowZSamazonka-appflow
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.AppFlow.Types.ExecutionResult

Description

 
Synopsis

Documentation

data ExecutionResult Source #

Specifies the end result of the flow run.

See: newExecutionResult smart constructor.

Constructors

ExecutionResult' 

Fields

Instances

Instances details
Eq ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

Read ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

Show ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

Generic ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

Associated Types

type Rep ExecutionResult :: Type -> Type #

NFData ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

Methods

rnf :: ExecutionResult -> () #

Hashable ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

FromJSON ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

type Rep ExecutionResult Source # 
Instance details

Defined in Amazonka.AppFlow.Types.ExecutionResult

type Rep ExecutionResult = D1 ('MetaData "ExecutionResult" "Amazonka.AppFlow.Types.ExecutionResult" "libZSservicesZSamazonka-appflowZSamazonka-appflow" 'False) (C1 ('MetaCons "ExecutionResult'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "recordsProcessed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "bytesWritten") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 ('MetaSel ('Just "bytesProcessed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "errorInfo") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorInfo)))))

newExecutionResult :: ExecutionResult Source #

Create a value of ExecutionResult 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:recordsProcessed:ExecutionResult', executionResult_recordsProcessed - The number of records processed in the flow run.

$sel:bytesWritten:ExecutionResult', executionResult_bytesWritten - The total number of bytes written as a result of the flow run.

$sel:bytesProcessed:ExecutionResult', executionResult_bytesProcessed - The total number of bytes processed by the flow run.

$sel:errorInfo:ExecutionResult', executionResult_errorInfo - Provides any error message information related to the flow run.

executionResult_recordsProcessed :: Lens' ExecutionResult (Maybe Integer) Source #

The number of records processed in the flow run.

executionResult_bytesWritten :: Lens' ExecutionResult (Maybe Integer) Source #

The total number of bytes written as a result of the flow run.

executionResult_bytesProcessed :: Lens' ExecutionResult (Maybe Integer) Source #

The total number of bytes processed by the flow run.

executionResult_errorInfo :: Lens' ExecutionResult (Maybe ErrorInfo) Source #

Provides any error message information related to the flow run.