AWSLogsStandardUnit

Objective-C

NS_ENUM(NSInteger, AWSLogsStandardUnit) {
    AWSLogsStandardUnitUnknown,
    AWSLogsStandardUnitSeconds,
    AWSLogsStandardUnitMicroseconds,
    AWSLogsStandardUnitMilliseconds,
    AWSLogsStandardUnitBytes,
    AWSLogsStandardUnitKilobytes,
    AWSLogsStandardUnitMegabytes,
    AWSLogsStandardUnitGigabytes,
    AWSLogsStandardUnitTerabytes,
    AWSLogsStandardUnitBits,
    AWSLogsStandardUnitKilobits,
    AWSLogsStandardUnitMegabits,
    AWSLogsStandardUnitGigabits,
    AWSLogsStandardUnitTerabits,
    AWSLogsStandardUnitPercent,
    AWSLogsStandardUnitCount,
    AWSLogsStandardUnitBytesSecond,
    AWSLogsStandardUnitKilobytesSecond,
    AWSLogsStandardUnitMegabytesSecond,
    AWSLogsStandardUnitGigabytesSecond,
    AWSLogsStandardUnitTerabytesSecond,
    AWSLogsStandardUnitBitsSecond,
    AWSLogsStandardUnitKilobitsSecond,
    AWSLogsStandardUnitMegabitsSecond,
    AWSLogsStandardUnitGigabitsSecond,
    AWSLogsStandardUnitTerabitsSecond,
    AWSLogsStandardUnitCountSecond,
    AWSLogsStandardUnitNone,
}

Swift

enum AWSLogsStandardUnit : Int, @unchecked Sendable

Undocumented