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.SourceTableFeatureDetails

Description

 
Synopsis

Documentation

data SourceTableFeatureDetails Source #

Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.

See: newSourceTableFeatureDetails smart constructor.

Constructors

SourceTableFeatureDetails' 

Fields

Instances

Instances details
Eq SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

Read SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

Show SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

Generic SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

Associated Types

type Rep SourceTableFeatureDetails :: Type -> Type #

NFData SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

Hashable SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

FromJSON SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

type Rep SourceTableFeatureDetails Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SourceTableFeatureDetails

type Rep SourceTableFeatureDetails = D1 ('MetaData "SourceTableFeatureDetails" "Amazonka.DynamoDB.Types.SourceTableFeatureDetails" "libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb" 'False) (C1 ('MetaCons "SourceTableFeatureDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "streamDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StreamSpecification)) :*: S1 ('MetaSel ('Just "globalSecondaryIndexes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [GlobalSecondaryIndexInfo]))) :*: (S1 ('MetaSel ('Just "localSecondaryIndexes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LocalSecondaryIndexInfo])) :*: (S1 ('MetaSel ('Just "sSEDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SSEDescription)) :*: S1 ('MetaSel ('Just "timeToLiveDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TimeToLiveDescription))))))

newSourceTableFeatureDetails :: SourceTableFeatureDetails Source #

Create a value of SourceTableFeatureDetails 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:streamDescription:SourceTableFeatureDetails', sourceTableFeatureDetails_streamDescription - Stream settings on the table when the backup was created.

$sel:globalSecondaryIndexes:SourceTableFeatureDetails', sourceTableFeatureDetails_globalSecondaryIndexes - Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.

$sel:localSecondaryIndexes:SourceTableFeatureDetails', sourceTableFeatureDetails_localSecondaryIndexes - Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.

$sel:sSEDescription:SourceTableFeatureDetails', sourceTableFeatureDetails_sSEDescription - The description of the server-side encryption status on the table when the backup was created.

$sel:timeToLiveDescription:SourceTableFeatureDetails', sourceTableFeatureDetails_timeToLiveDescription - Time to Live settings on the table when the backup was created.

sourceTableFeatureDetails_globalSecondaryIndexes :: Lens' SourceTableFeatureDetails (Maybe [GlobalSecondaryIndexInfo]) Source #

Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.

sourceTableFeatureDetails_localSecondaryIndexes :: Lens' SourceTableFeatureDetails (Maybe [LocalSecondaryIndexInfo]) Source #

Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.

sourceTableFeatureDetails_sSEDescription :: Lens' SourceTableFeatureDetails (Maybe SSEDescription) Source #

The description of the server-side encryption status on the table when the backup was created.

sourceTableFeatureDetails_timeToLiveDescription :: Lens' SourceTableFeatureDetails (Maybe TimeToLiveDescription) Source #

Time to Live settings on the table when the backup was created.