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

Description

 
Synopsis

Documentation

data ReplicaGlobalSecondaryIndexSettingsDescription Source #

Represents the properties of a global secondary index.

See: newReplicaGlobalSecondaryIndexSettingsDescription smart constructor.

Constructors

ReplicaGlobalSecondaryIndexSettingsDescription' 

Fields

Instances

Instances details
Eq ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

Read ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

Show ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

Generic ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

NFData ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

Hashable ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

FromJSON ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

type Rep ReplicaGlobalSecondaryIndexSettingsDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription

type Rep ReplicaGlobalSecondaryIndexSettingsDescription = D1 ('MetaData "ReplicaGlobalSecondaryIndexSettingsDescription" "Amazonka.DynamoDB.Types.ReplicaGlobalSecondaryIndexSettingsDescription" "libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb" 'False) (C1 ('MetaCons "ReplicaGlobalSecondaryIndexSettingsDescription'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "indexStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IndexStatus)) :*: (S1 ('MetaSel ('Just "provisionedReadCapacityUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "provisionedWriteCapacityUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))) :*: (S1 ('MetaSel ('Just "provisionedWriteCapacityAutoScalingSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AutoScalingSettingsDescription)) :*: (S1 ('MetaSel ('Just "provisionedReadCapacityAutoScalingSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AutoScalingSettingsDescription)) :*: S1 ('MetaSel ('Just "indexName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newReplicaGlobalSecondaryIndexSettingsDescription Source #

Create a value of ReplicaGlobalSecondaryIndexSettingsDescription 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:indexStatus:ReplicaGlobalSecondaryIndexSettingsDescription', replicaGlobalSecondaryIndexSettingsDescription_indexStatus - The current status of the global secondary index:

  • CREATING - The global secondary index is being created.
  • UPDATING - The global secondary index is being updated.
  • DELETING - The global secondary index is being deleted.
  • ACTIVE - The global secondary index is ready for use.

$sel:provisionedReadCapacityUnits:ReplicaGlobalSecondaryIndexSettingsDescription', replicaGlobalSecondaryIndexSettingsDescription_provisionedReadCapacityUnits - The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

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

$sel:provisionedWriteCapacityAutoScalingSettings:ReplicaGlobalSecondaryIndexSettingsDescription', replicaGlobalSecondaryIndexSettingsDescription_provisionedWriteCapacityAutoScalingSettings - Auto scaling settings for a global secondary index replica's write capacity units.

$sel:provisionedReadCapacityAutoScalingSettings:ReplicaGlobalSecondaryIndexSettingsDescription', replicaGlobalSecondaryIndexSettingsDescription_provisionedReadCapacityAutoScalingSettings - Auto scaling settings for a global secondary index replica's read capacity units.

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

replicaGlobalSecondaryIndexSettingsDescription_indexStatus :: Lens' ReplicaGlobalSecondaryIndexSettingsDescription (Maybe IndexStatus) Source #

The current status of the global secondary index:

  • CREATING - The global secondary index is being created.
  • UPDATING - The global secondary index is being updated.
  • DELETING - The global secondary index is being deleted.
  • ACTIVE - The global secondary index is ready for use.

replicaGlobalSecondaryIndexSettingsDescription_provisionedReadCapacityUnits :: Lens' ReplicaGlobalSecondaryIndexSettingsDescription (Maybe Natural) Source #

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

replicaGlobalSecondaryIndexSettingsDescription_provisionedWriteCapacityUnits :: Lens' ReplicaGlobalSecondaryIndexSettingsDescription (Maybe Natural) Source #

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

replicaGlobalSecondaryIndexSettingsDescription_indexName :: Lens' ReplicaGlobalSecondaryIndexSettingsDescription Text Source #

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