AwsDynamoDbTableProvisionedThroughput

public struct AwsDynamoDbTableProvisionedThroughput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates when the provisioned throughput was last decreased. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

    Declaration

    Swift

    public let lastDecreaseDateTime: String?
  • Indicates when the provisioned throughput was last increased. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

    Declaration

    Swift

    public let lastIncreaseDateTime: String?
  • The number of times during the current UTC calendar day that the provisioned throughput was decreased.

    Declaration

    Swift

    public let numberOfDecreasesToday: Int?
  • The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

    Declaration

    Swift

    public let readCapacityUnits: Int?
  • The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

    Declaration

    Swift

    public let writeCapacityUnits: Int?
  • Undocumented

    Declaration

    Swift

    public init(lastDecreaseDateTime: String? = nil, lastIncreaseDateTime: String? = nil, numberOfDecreasesToday: Int? = nil, readCapacityUnits: Int? = nil, writeCapacityUnits: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws