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

Description

 
Synopsis

Documentation

data ProvisionedThroughput Source #

Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.

See: newProvisionedThroughput smart constructor.

Constructors

ProvisionedThroughput' 

Fields

Instances

Instances details
Eq ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

Read ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

Show ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

Generic ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

Associated Types

type Rep ProvisionedThroughput :: Type -> Type #

NFData ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

Methods

rnf :: ProvisionedThroughput -> () #

Hashable ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

ToJSON ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

FromJSON ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

type Rep ProvisionedThroughput Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.ProvisionedThroughput

type Rep ProvisionedThroughput = D1 ('MetaData "ProvisionedThroughput" "Amazonka.DynamoDB.Types.ProvisionedThroughput" "libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb" 'False) (C1 ('MetaCons "ProvisionedThroughput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "readCapacityUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "writeCapacityUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))

newProvisionedThroughput Source #

Create a value of ProvisionedThroughput 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:readCapacityUnits:ProvisionedThroughput', provisionedThroughput_readCapacityUnits - The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.

$sel:writeCapacityUnits:ProvisionedThroughput', provisionedThroughput_writeCapacityUnits - The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.

provisionedThroughput_readCapacityUnits :: Lens' ProvisionedThroughput Natural Source #

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.

provisionedThroughput_writeCapacityUnits :: Lens' ProvisionedThroughput Natural Source #

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.