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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ChannelLatencyMode string
// Enum values for ChannelLatencyMode
const (
ChannelLatencyModeNormalLatency ChannelLatencyMode = "NORMAL"
ChannelLatencyModeLowLatency ChannelLatencyMode = "LOW"
)
// Values returns all known values for ChannelLatencyMode. 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 (ChannelLatencyMode) Values() []ChannelLatencyMode {
return []ChannelLatencyMode{
"NORMAL",
"LOW",
}
}
type ChannelType string
// Enum values for ChannelType
const (
ChannelTypeBasicChannelType ChannelType = "BASIC"
ChannelTypeStandardChannelType ChannelType = "STANDARD"
ChannelTypeAdvancedSDChannelType ChannelType = "ADVANCED_SD"
ChannelTypeAdvancedHDChannelType ChannelType = "ADVANCED_HD"
)
// Values returns all known values for ChannelType. 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 (ChannelType) Values() []ChannelType {
return []ChannelType{
"BASIC",
"STANDARD",
"ADVANCED_SD",
"ADVANCED_HD",
}
}
type RecordingConfigurationState string
// Enum values for RecordingConfigurationState
const (
RecordingConfigurationStateCreating RecordingConfigurationState = "CREATING"
RecordingConfigurationStateCreateFailed RecordingConfigurationState = "CREATE_FAILED"
RecordingConfigurationStateActive RecordingConfigurationState = "ACTIVE"
)
// Values returns all known values for RecordingConfigurationState. 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 (RecordingConfigurationState) Values() []RecordingConfigurationState {
return []RecordingConfigurationState{
"CREATING",
"CREATE_FAILED",
"ACTIVE",
}
}
type RecordingMode string
// Enum values for RecordingMode
const (
RecordingModeDisabled RecordingMode = "DISABLED"
RecordingModeInterval RecordingMode = "INTERVAL"
)
// Values returns all known values for RecordingMode. 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 (RecordingMode) Values() []RecordingMode {
return []RecordingMode{
"DISABLED",
"INTERVAL",
}
}
type RenditionConfigurationRendition string
// Enum values for RenditionConfigurationRendition
const (
RenditionConfigurationRenditionFullHd RenditionConfigurationRendition = "FULL_HD"
RenditionConfigurationRenditionHd RenditionConfigurationRendition = "HD"
RenditionConfigurationRenditionSd RenditionConfigurationRendition = "SD"
RenditionConfigurationRenditionLowestResolution RenditionConfigurationRendition = "LOWEST_RESOLUTION"
)
// Values returns all known values for RenditionConfigurationRendition. 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 (RenditionConfigurationRendition) Values() []RenditionConfigurationRendition {
return []RenditionConfigurationRendition{
"FULL_HD",
"HD",
"SD",
"LOWEST_RESOLUTION",
}
}
type RenditionConfigurationRenditionSelection string
// Enum values for RenditionConfigurationRenditionSelection
const (
RenditionConfigurationRenditionSelectionAll RenditionConfigurationRenditionSelection = "ALL"
RenditionConfigurationRenditionSelectionNone RenditionConfigurationRenditionSelection = "NONE"
RenditionConfigurationRenditionSelectionCustom RenditionConfigurationRenditionSelection = "CUSTOM"
)
// Values returns all known values for RenditionConfigurationRenditionSelection.
// 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 (RenditionConfigurationRenditionSelection) Values() []RenditionConfigurationRenditionSelection {
return []RenditionConfigurationRenditionSelection{
"ALL",
"NONE",
"CUSTOM",
}
}
type StreamHealth string
// Enum values for StreamHealth
const (
StreamHealthStreamHealthy StreamHealth = "HEALTHY"
StreamHealthStarving StreamHealth = "STARVING"
StreamHealthUnknown StreamHealth = "UNKNOWN"
)
// Values returns all known values for StreamHealth. 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 (StreamHealth) Values() []StreamHealth {
return []StreamHealth{
"HEALTHY",
"STARVING",
"UNKNOWN",
}
}
type StreamState string
// Enum values for StreamState
const (
StreamStateStreamLive StreamState = "LIVE"
StreamStateStreamOffline StreamState = "OFFLINE"
)
// Values returns all known values for StreamState. 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 (StreamState) Values() []StreamState {
return []StreamState{
"LIVE",
"OFFLINE",
}
}
type ThumbnailConfigurationResolution string
// Enum values for ThumbnailConfigurationResolution
const (
ThumbnailConfigurationResolutionFullHd ThumbnailConfigurationResolution = "FULL_HD"
ThumbnailConfigurationResolutionHd ThumbnailConfigurationResolution = "HD"
ThumbnailConfigurationResolutionSd ThumbnailConfigurationResolution = "SD"
ThumbnailConfigurationResolutionLowestResolution ThumbnailConfigurationResolution = "LOWEST_RESOLUTION"
)
// Values returns all known values for ThumbnailConfigurationResolution. 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 (ThumbnailConfigurationResolution) Values() []ThumbnailConfigurationResolution {
return []ThumbnailConfigurationResolution{
"FULL_HD",
"HD",
"SD",
"LOWEST_RESOLUTION",
}
}
type ThumbnailConfigurationStorage string
// Enum values for ThumbnailConfigurationStorage
const (
ThumbnailConfigurationStorageSequential ThumbnailConfigurationStorage = "SEQUENTIAL"
ThumbnailConfigurationStorageLatest ThumbnailConfigurationStorage = "LATEST"
)
// Values returns all known values for ThumbnailConfigurationStorage. 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 (ThumbnailConfigurationStorage) Values() []ThumbnailConfigurationStorage {
return []ThumbnailConfigurationStorage{
"SEQUENTIAL",
"LATEST",
}
}
type TranscodePreset string
// Enum values for TranscodePreset
const (
TranscodePresetHigherBandwidthTranscodePreset TranscodePreset = "HIGHER_BANDWIDTH_DELIVERY"
TranscodePresetConstrainedBandwidthTranscodePreset TranscodePreset = "CONSTRAINED_BANDWIDTH_DELIVERY"
)
// Values returns all known values for TranscodePreset. 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 (TranscodePreset) Values() []TranscodePreset {
return []TranscodePreset{
"HIGHER_BANDWIDTH_DELIVERY",
"CONSTRAINED_BANDWIDTH_DELIVERY",
}
}
|