AWSConnectMetricInterval
Objective-C
@interface AWSConnectMetricInterval
Swift
class AWSConnectMetricInterval
The interval period with the start and end time for the metrics.
-
The timestamp, in UNIX Epoch time format. End time is based on the interval period selected. For example, If
IntervalPeriod
is selectedTHIRTY_MIN
,StartTime
andEndTime
in the API request differs by 1 day, then 48 results are returned in the response. Each result is aggregated by the 30 minutes period, with eachStartTime
andEndTime
differing by 30 minutes.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable endTime;
Swift
var endTime: Date? { get set }
-
The interval period provided in the API request.
Declaration
Objective-C
@property (nonatomic) AWSConnectIntervalPeriod interval;
Swift
var interval: AWSConnectIntervalPeriod { get set }
-
The timestamp, in UNIX Epoch time format. Start time is based on the interval period selected.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable startTime;
Swift
var startTime: Date? { get set }