Show / Hide Table of Contents

Class CfnTablePropsMixin.ProvisionedThroughputProperty

Throughput for the specified table, which consists of values for ReadCapacityUnits and WriteCapacityUnits .

Inheritance
object
CfnTablePropsMixin.ProvisionedThroughputProperty
Implements
CfnTablePropsMixin.IProvisionedThroughputProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.ProvisionedThroughputProperty : CfnTablePropsMixin.IProvisionedThroughputProperty
Syntax (vb)
Public Class CfnTablePropsMixin.ProvisionedThroughputProperty Implements CfnTablePropsMixin.IProvisionedThroughputProperty
Remarks

For more information about the contents of a provisioned throughput structure, see Amazon DynamoDB Table ProvisionedThroughput .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB;

             var provisionedThroughputProperty = new ProvisionedThroughputProperty {
                 ReadCapacityUnits = 123,
                 WriteCapacityUnits = 123
             };

Synopsis

Constructors

ProvisionedThroughputProperty()

Throughput for the specified table, which consists of values for ReadCapacityUnits and WriteCapacityUnits .

Properties

ReadCapacityUnits

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

WriteCapacityUnits

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

Constructors

ProvisionedThroughputProperty()

Throughput for the specified table, which consists of values for ReadCapacityUnits and WriteCapacityUnits .

public ProvisionedThroughputProperty()
Remarks

For more information about the contents of a provisioned throughput structure, see Amazon DynamoDB Table ProvisionedThroughput .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB;

             var provisionedThroughputProperty = new ProvisionedThroughputProperty {
                 ReadCapacityUnits = 123,
                 WriteCapacityUnits = 123
             };

Properties

ReadCapacityUnits

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

public double? ReadCapacityUnits { get; set; }
Property Value

double?

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html#cfn-dynamodb-table-provisionedthroughput-readcapacityunits

WriteCapacityUnits

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

public double? WriteCapacityUnits { get; set; }
Property Value

double?

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-provisionedthroughput.html#cfn-dynamodb-table-provisionedthroughput-writecapacityunits

Implements

CfnTablePropsMixin.IProvisionedThroughputProperty
Back to top Generated by DocFX