1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type Distribution string
// Enum values for Distribution
const (
DistributionRandom Distribution = "Random"
DistributionByLogStream Distribution = "ByLogStream"
)
// Values returns all known values for Distribution. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Distribution) Values() []Distribution {
return []Distribution{
"Random",
"ByLogStream",
}
}
type ExportTaskStatusCode string
// Enum values for ExportTaskStatusCode
const (
ExportTaskStatusCodeCancelled ExportTaskStatusCode = "CANCELLED"
ExportTaskStatusCodeCompleted ExportTaskStatusCode = "COMPLETED"
ExportTaskStatusCodeFailed ExportTaskStatusCode = "FAILED"
ExportTaskStatusCodePending ExportTaskStatusCode = "PENDING"
ExportTaskStatusCodePendingCancel ExportTaskStatusCode = "PENDING_CANCEL"
ExportTaskStatusCodeRunning ExportTaskStatusCode = "RUNNING"
)
// Values returns all known values for ExportTaskStatusCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExportTaskStatusCode) Values() []ExportTaskStatusCode {
return []ExportTaskStatusCode{
"CANCELLED",
"COMPLETED",
"FAILED",
"PENDING",
"PENDING_CANCEL",
"RUNNING",
}
}
type OrderBy string
// Enum values for OrderBy
const (
OrderByLogStreamName OrderBy = "LogStreamName"
OrderByLastEventTime OrderBy = "LastEventTime"
)
// Values returns all known values for OrderBy. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (OrderBy) Values() []OrderBy {
return []OrderBy{
"LogStreamName",
"LastEventTime",
}
}
type QueryStatus string
// Enum values for QueryStatus
const (
QueryStatusScheduled QueryStatus = "Scheduled"
QueryStatusRunning QueryStatus = "Running"
QueryStatusComplete QueryStatus = "Complete"
QueryStatusFailed QueryStatus = "Failed"
QueryStatusCancelled QueryStatus = "Cancelled"
QueryStatusTimeout QueryStatus = "Timeout"
QueryStatusUnknown QueryStatus = "Unknown"
)
// Values returns all known values for QueryStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (QueryStatus) Values() []QueryStatus {
return []QueryStatus{
"Scheduled",
"Running",
"Complete",
"Failed",
"Cancelled",
"Timeout",
"Unknown",
}
}
type StandardUnit string
// Enum values for StandardUnit
const (
StandardUnitSeconds StandardUnit = "Seconds"
StandardUnitMicroseconds StandardUnit = "Microseconds"
StandardUnitMilliseconds StandardUnit = "Milliseconds"
StandardUnitBytes StandardUnit = "Bytes"
StandardUnitKilobytes StandardUnit = "Kilobytes"
StandardUnitMegabytes StandardUnit = "Megabytes"
StandardUnitGigabytes StandardUnit = "Gigabytes"
StandardUnitTerabytes StandardUnit = "Terabytes"
StandardUnitBits StandardUnit = "Bits"
StandardUnitKilobits StandardUnit = "Kilobits"
StandardUnitMegabits StandardUnit = "Megabits"
StandardUnitGigabits StandardUnit = "Gigabits"
StandardUnitTerabits StandardUnit = "Terabits"
StandardUnitPercent StandardUnit = "Percent"
StandardUnitCount StandardUnit = "Count"
StandardUnitBytesSecond StandardUnit = "Bytes/Second"
StandardUnitKilobytesSecond StandardUnit = "Kilobytes/Second"
StandardUnitMegabytesSecond StandardUnit = "Megabytes/Second"
StandardUnitGigabytesSecond StandardUnit = "Gigabytes/Second"
StandardUnitTerabytesSecond StandardUnit = "Terabytes/Second"
StandardUnitBitsSecond StandardUnit = "Bits/Second"
StandardUnitKilobitsSecond StandardUnit = "Kilobits/Second"
StandardUnitMegabitsSecond StandardUnit = "Megabits/Second"
StandardUnitGigabitsSecond StandardUnit = "Gigabits/Second"
StandardUnitTerabitsSecond StandardUnit = "Terabits/Second"
StandardUnitCountSecond StandardUnit = "Count/Second"
StandardUnitNone StandardUnit = "None"
)
// Values returns all known values for StandardUnit. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (StandardUnit) Values() []StandardUnit {
return []StandardUnit{
"Seconds",
"Microseconds",
"Milliseconds",
"Bytes",
"Kilobytes",
"Megabytes",
"Gigabytes",
"Terabytes",
"Bits",
"Kilobits",
"Megabits",
"Gigabits",
"Terabits",
"Percent",
"Count",
"Bytes/Second",
"Kilobytes/Second",
"Megabytes/Second",
"Gigabytes/Second",
"Terabytes/Second",
"Bits/Second",
"Kilobits/Second",
"Megabits/Second",
"Gigabits/Second",
"Terabits/Second",
"Count/Second",
"None",
}
}
|