ApplicationDateRangeKpiResponse

public struct ApplicationDateRangeKpiResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique identifier for the application that the metric applies to.

    Declaration

    Swift

    public let applicationId: String
  • The last date and time of the date range that was used to filter the query results, in extended ISO 8601 format. The date range is inclusive.

    Declaration

    Swift

    public let endTime: TimeStamp
  • The name of the metric, also referred to as a key performance indicator (KPI), that the data was retrieved for. This value describes the associated metric and consists of two or more terms, which are comprised of lowercase alphanumeric characters, separated by a hyphen. For a list of possible values, see the Amazon Pinpoint Developer Guide.

    Declaration

    Swift

    public let kpiName: String
  • An array of objects that contains the results of the query. Each object contains the value for the metric and metadata about that value.

    Declaration

    Swift

    public let kpiResult: BaseKpiResult
  • The string to use in a subsequent request to get the next page of results in a paginated response. This value is null for the Application Metrics resource because the resource returns all results in a single page.

    Declaration

    Swift

    public let nextToken: String?
  • The first date and time of the date range that was used to filter the query results, in extended ISO 8601 format. The date range is inclusive.

    Declaration

    Swift

    public let startTime: TimeStamp
  • Undocumented

    Declaration

    Swift

    public init(applicationId: String, endTime: TimeStamp, kpiName: String, kpiResult: BaseKpiResult, nextToken: String? = nil, startTime: TimeStamp)