AWSConnectGetCurrentMetricDataResponse

Objective-C

@interface AWSConnectGetCurrentMetricDataResponse

Swift

class AWSConnectGetCurrentMetricDataResponse
  • The total count of the result, regardless of the current page size.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable approximateTotalCount;

    Swift

    var approximateTotalCount: NSNumber? { get set }
  • The time at which the metrics were retrieved and cached for pagination.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable dataSnapshotTime;

    Swift

    var dataSnapshotTime: Date? { get set }
  • Information about the real-time metrics.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectCurrentMetricResult *> *_Nullable metricResults;

    Swift

    var metricResults: [AWSConnectCurrentMetricResult]? { get set }
  • If there are additional results, this is the token for the next set of results.

    The token expires after 5 minutes from the time it is created. Subsequent requests that use the token must use the same request parameters as the request that generated the token.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }