stratosphere-0.2.2: EDSL for AWS CloudFormation

Safe HaskellNone
LanguageHaskell2010

Stratosphere.ResourceProperties.DynamoDBProvisionedThroughput

Description

Describes a set of provisioned throughput values for an AWS::DynamoDB::Table resource. DynamoDB uses these capacity units to allocate sufficient resources to provide the requested throughput. For a complete discussion of DynamoDB provisioned throughput values, see Specifying Read and Write Requirements in the DynamoDB Developer Guide.

Synopsis

Documentation

data DynamoDBProvisionedThroughput Source #

Full data type definition for DynamoDBProvisionedThroughput. See dynamoDBProvisionedThroughput for a more convenient constructor.

Instances

Show DynamoDBProvisionedThroughput Source # 
Generic DynamoDBProvisionedThroughput Source # 
ToJSON DynamoDBProvisionedThroughput Source # 
FromJSON DynamoDBProvisionedThroughput Source # 
type Rep DynamoDBProvisionedThroughput Source # 
type Rep DynamoDBProvisionedThroughput = D1 (MetaData "DynamoDBProvisionedThroughput" "Stratosphere.ResourceProperties.DynamoDBProvisionedThroughput" "stratosphere-0.2.2-Fnop5S0NvsvBmp7LUeJWuv" False) (C1 (MetaCons "DynamoDBProvisionedThroughput" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dynamoDBProvisionedThroughputReadCapacityUnits") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Val Integer'))) (S1 (MetaSel (Just Symbol "_dynamoDBProvisionedThroughputWriteCapacityUnits") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Val Integer')))))

ddbptReadCapacityUnits :: Lens' DynamoDBProvisionedThroughput (Val Integer') Source #

Sets the desired minimum number of consistent reads of items (up to 1KB in size) per second for the specified table before Amazon DynamoDB balances the load.

ddbptWriteCapacityUnits :: Lens' DynamoDBProvisionedThroughput (Val Integer') Source #

Sets the desired minimum number of consistent writes of items (up to 1KB in size) per second for the specified table before Amazon DynamoDB balances the load.