Usage

public struct Usage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ending date of the usage data.

    Declaration

    Swift

    public let endDate: String?
  • The usage data, as daily logs of used and remaining quotas, over the specified time interval indexed over the API keys in a usage plan. For example, {…, “values” : { “{api_key}” : [ [0, 100], [10, 90], [100, 10]]}, where {api_key} stands for an API key value and the daily log entry is of the format [used quota, remaining quota].

    Declaration

    Swift

    public let items: [String : [[Int64]]]?
  • Undocumented

    Declaration

    Swift

    public let position: String?
  • The starting date of the usage data.

    Declaration

    Swift

    public let startDate: String?
  • The plan Id associated with this usage data.

    Declaration

    Swift

    public let usagePlanId: String?
  • Undocumented

    Declaration

    Swift

    public init(endDate: String? = nil, items: [String : [[Int64]]]? = nil, position: String? = nil, startDate: String? = nil, usagePlanId: String? = nil)