amazonka-glue-2.0: Amazon Glue SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Glue.Types.StatementOutput

Description

 
Synopsis

Documentation

data StatementOutput Source #

The code execution output in JSON format.

See: newStatementOutput smart constructor.

Constructors

StatementOutput' 

Fields

Instances

Instances details
FromJSON StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

Generic StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

Associated Types

type Rep StatementOutput :: Type -> Type #

Read StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

Show StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

NFData StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

Methods

rnf :: StatementOutput -> () #

Eq StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

Hashable StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

type Rep StatementOutput Source # 
Instance details

Defined in Amazonka.Glue.Types.StatementOutput

newStatementOutput :: StatementOutput Source #

Create a value of StatementOutput 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:data':StatementOutput', statementOutput_data - The code execution output.

$sel:errorName:StatementOutput', statementOutput_errorName - The name of the error in the output.

$sel:errorValue:StatementOutput', statementOutput_errorValue - The error value of the output.

$sel:executionCount:StatementOutput', statementOutput_executionCount - The execution count of the output.

$sel:status:StatementOutput', statementOutput_status - The status of the code execution output.

$sel:traceback:StatementOutput', statementOutput_traceback - The traceback of the output.

statementOutput_errorName :: Lens' StatementOutput (Maybe Text) Source #

The name of the error in the output.

statementOutput_executionCount :: Lens' StatementOutput (Maybe Int) Source #

The execution count of the output.

statementOutput_status :: Lens' StatementOutput (Maybe StatementState) Source #

The status of the code execution output.

statementOutput_traceback :: Lens' StatementOutput (Maybe [Text]) Source #

The traceback of the output.