libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb
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.DynamoDB.Types.BatchStatementResponse

Description

 
Synopsis

Documentation

data BatchStatementResponse Source #

A PartiQL batch statement response..

See: newBatchStatementResponse smart constructor.

Constructors

BatchStatementResponse' 

Fields

Instances

Instances details
Eq BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

Read BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

Show BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

Generic BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

Associated Types

type Rep BatchStatementResponse :: Type -> Type #

NFData BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

Methods

rnf :: BatchStatementResponse -> () #

Hashable BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

FromJSON BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

type Rep BatchStatementResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.BatchStatementResponse

type Rep BatchStatementResponse = D1 ('MetaData "BatchStatementResponse" "Amazonka.DynamoDB.Types.BatchStatementResponse" "libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb" 'False) (C1 ('MetaCons "BatchStatementResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BatchStatementError)) :*: (S1 ('MetaSel ('Just "item") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text AttributeValue))) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newBatchStatementResponse :: BatchStatementResponse Source #

Create a value of BatchStatementResponse 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:error:BatchStatementResponse', batchStatementResponse_error - The error associated with a failed PartiQL batch statement.

$sel:item:BatchStatementResponse', batchStatementResponse_item - A DynamoDB item associated with a BatchStatementResponse

$sel:tableName:BatchStatementResponse', batchStatementResponse_tableName - The table name associated with a failed PartiQL batch statement.

batchStatementResponse_error :: Lens' BatchStatementResponse (Maybe BatchStatementError) Source #

The error associated with a failed PartiQL batch statement.

batchStatementResponse_item :: Lens' BatchStatementResponse (Maybe (HashMap Text AttributeValue)) Source #

A DynamoDB item associated with a BatchStatementResponse

batchStatementResponse_tableName :: Lens' BatchStatementResponse (Maybe Text) Source #

The table name associated with a failed PartiQL batch statement.