ConsumedCapacity

public struct ConsumedCapacity : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The total number of capacity units consumed by the operation.

    Declaration

    Swift

    public let capacityUnits: Double?
  • The amount of throughput consumed on each global index affected by the operation.

    Declaration

    Swift

    public let globalSecondaryIndexes: [String : Capacity]?
  • The amount of throughput consumed on each local index affected by the operation.

    Declaration

    Swift

    public let localSecondaryIndexes: [String : Capacity]?
  • The total number of read capacity units consumed by the operation.

    Declaration

    Swift

    public let readCapacityUnits: Double?
  • The amount of throughput consumed on the table affected by the operation.

    Declaration

    Swift

    public let table: Capacity?
  • The name of the table that was affected by the operation.

    Declaration

    Swift

    public let tableName: String?
  • The total number of write capacity units consumed by the operation.

    Declaration

    Swift

    public let writeCapacityUnits: Double?
  • Undocumented

    Declaration

    Swift

    public init(capacityUnits: Double? = nil, globalSecondaryIndexes: [String : Capacity]? = nil, localSecondaryIndexes: [String : Capacity]? = nil, readCapacityUnits: Double? = nil, table: Capacity? = nil, tableName: String? = nil, writeCapacityUnits: Double? = nil)