amazonka-dynamodb-2.0: Amazon DynamoDB 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.DynamoDB.Types.ExportSummary

Description

 
Synopsis

Documentation

data ExportSummary Source #

Summary information about an export task.

See: newExportSummary smart constructor.

Constructors

ExportSummary' 

Fields

Instances

Instances details
FromJSON ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

Generic ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

Associated Types

type Rep ExportSummary :: Type -> Type #

Read ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

Show ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

NFData ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

Methods

rnf :: ExportSummary -> () #

Eq ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

Hashable ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

type Rep ExportSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ExportSummary

type Rep ExportSummary = D1 ('MetaData "ExportSummary" "Amazonka.DynamoDB.Types.ExportSummary" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "ExportSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "exportArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "exportStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExportStatus))))

newExportSummary :: ExportSummary Source #

Create a value of ExportSummary 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:exportArn:ExportSummary', exportSummary_exportArn - The Amazon Resource Name (ARN) of the export.

$sel:exportStatus:ExportSummary', exportSummary_exportStatus - Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

exportSummary_exportArn :: Lens' ExportSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the export.

exportSummary_exportStatus :: Lens' ExportSummary (Maybe ExportStatus) Source #

Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.