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

Description

 
Synopsis

Documentation

data GlobalTableGlobalSecondaryIndexSettingsUpdate Source #

Represents the settings of a global secondary index for a global table that will be modified.

See: newGlobalTableGlobalSecondaryIndexSettingsUpdate smart constructor.

Constructors

GlobalTableGlobalSecondaryIndexSettingsUpdate' 

Fields

Instances

Instances details
ToJSON GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

Generic GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

Read GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

Show GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

NFData GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

Eq GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

Hashable GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

type Rep GlobalTableGlobalSecondaryIndexSettingsUpdate Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate

type Rep GlobalTableGlobalSecondaryIndexSettingsUpdate = D1 ('MetaData "GlobalTableGlobalSecondaryIndexSettingsUpdate" "Amazonka.DynamoDB.Types.GlobalTableGlobalSecondaryIndexSettingsUpdate" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "GlobalTableGlobalSecondaryIndexSettingsUpdate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "provisionedWriteCapacityAutoScalingSettingsUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AutoScalingSettingsUpdate)) :*: (S1 ('MetaSel ('Just "provisionedWriteCapacityUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "indexName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGlobalTableGlobalSecondaryIndexSettingsUpdate Source #

Create a value of GlobalTableGlobalSecondaryIndexSettingsUpdate 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:provisionedWriteCapacityAutoScalingSettingsUpdate:GlobalTableGlobalSecondaryIndexSettingsUpdate', globalTableGlobalSecondaryIndexSettingsUpdate_provisionedWriteCapacityAutoScalingSettingsUpdate - Auto scaling settings for managing a global secondary index's write capacity units.

$sel:provisionedWriteCapacityUnits:GlobalTableGlobalSecondaryIndexSettingsUpdate', globalTableGlobalSecondaryIndexSettingsUpdate_provisionedWriteCapacityUnits - The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

$sel:indexName:GlobalTableGlobalSecondaryIndexSettingsUpdate', globalTableGlobalSecondaryIndexSettingsUpdate_indexName - The name of the global secondary index. The name must be unique among all other indexes on this table.

globalTableGlobalSecondaryIndexSettingsUpdate_provisionedWriteCapacityUnits :: Lens' GlobalTableGlobalSecondaryIndexSettingsUpdate (Maybe Natural) Source #

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

globalTableGlobalSecondaryIndexSettingsUpdate_indexName :: Lens' GlobalTableGlobalSecondaryIndexSettingsUpdate Text Source #

The name of the global secondary index. The name must be unique among all other indexes on this table.