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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type APIName string
// Enum values for APIName
const (
APINamePutMedia APIName = "PUT_MEDIA"
APINameGetMedia APIName = "GET_MEDIA"
APINameListFragments APIName = "LIST_FRAGMENTS"
APINameGetMediaForFragmentList APIName = "GET_MEDIA_FOR_FRAGMENT_LIST"
APINameGetHlsStreamingSessionUrl APIName = "GET_HLS_STREAMING_SESSION_URL"
APINameGetDashStreamingSessionUrl APIName = "GET_DASH_STREAMING_SESSION_URL"
APINameGetClip APIName = "GET_CLIP"
APINameGetImages APIName = "GET_IMAGES"
)
// Values returns all known values for APIName. 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 (APIName) Values() []APIName {
return []APIName{
"PUT_MEDIA",
"GET_MEDIA",
"LIST_FRAGMENTS",
"GET_MEDIA_FOR_FRAGMENT_LIST",
"GET_HLS_STREAMING_SESSION_URL",
"GET_DASH_STREAMING_SESSION_URL",
"GET_CLIP",
"GET_IMAGES",
}
}
type ChannelProtocol string
// Enum values for ChannelProtocol
const (
ChannelProtocolWss ChannelProtocol = "WSS"
ChannelProtocolHttps ChannelProtocol = "HTTPS"
)
// Values returns all known values for ChannelProtocol. 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 (ChannelProtocol) Values() []ChannelProtocol {
return []ChannelProtocol{
"WSS",
"HTTPS",
}
}
type ChannelRole string
// Enum values for ChannelRole
const (
ChannelRoleMaster ChannelRole = "MASTER"
ChannelRoleViewer ChannelRole = "VIEWER"
)
// Values returns all known values for ChannelRole. 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 (ChannelRole) Values() []ChannelRole {
return []ChannelRole{
"MASTER",
"VIEWER",
}
}
type ChannelType string
// Enum values for ChannelType
const (
ChannelTypeSingleMaster ChannelType = "SINGLE_MASTER"
ChannelTypeFullMesh ChannelType = "FULL_MESH"
)
// 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{
"SINGLE_MASTER",
"FULL_MESH",
}
}
type ComparisonOperator string
// Enum values for ComparisonOperator
const (
ComparisonOperatorBeginsWith ComparisonOperator = "BEGINS_WITH"
)
// Values returns all known values for ComparisonOperator. 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 (ComparisonOperator) Values() []ComparisonOperator {
return []ComparisonOperator{
"BEGINS_WITH",
}
}
type ConfigurationStatus string
// Enum values for ConfigurationStatus
const (
ConfigurationStatusEnabled ConfigurationStatus = "ENABLED"
ConfigurationStatusDisabled ConfigurationStatus = "DISABLED"
)
// Values returns all known values for ConfigurationStatus. 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 (ConfigurationStatus) Values() []ConfigurationStatus {
return []ConfigurationStatus{
"ENABLED",
"DISABLED",
}
}
type Format string
// Enum values for Format
const (
FormatJpeg Format = "JPEG"
FormatPng Format = "PNG"
)
// Values returns all known values for Format. 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 (Format) Values() []Format {
return []Format{
"JPEG",
"PNG",
}
}
type FormatConfigKey string
// Enum values for FormatConfigKey
const (
FormatConfigKeyJPEGQuality FormatConfigKey = "JPEGQuality"
)
// Values returns all known values for FormatConfigKey. 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 (FormatConfigKey) Values() []FormatConfigKey {
return []FormatConfigKey{
"JPEGQuality",
}
}
type ImageSelectorType string
// Enum values for ImageSelectorType
const (
ImageSelectorTypeServerTimestamp ImageSelectorType = "SERVER_TIMESTAMP"
ImageSelectorTypeProducerTimestamp ImageSelectorType = "PRODUCER_TIMESTAMP"
)
// Values returns all known values for ImageSelectorType. 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 (ImageSelectorType) Values() []ImageSelectorType {
return []ImageSelectorType{
"SERVER_TIMESTAMP",
"PRODUCER_TIMESTAMP",
}
}
type Status string
// Enum values for Status
const (
StatusCreating Status = "CREATING"
StatusActive Status = "ACTIVE"
StatusUpdating Status = "UPDATING"
StatusDeleting Status = "DELETING"
)
// Values returns all known values for Status. 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 (Status) Values() []Status {
return []Status{
"CREATING",
"ACTIVE",
"UPDATING",
"DELETING",
}
}
type UpdateDataRetentionOperation string
// Enum values for UpdateDataRetentionOperation
const (
UpdateDataRetentionOperationIncreaseDataRetention UpdateDataRetentionOperation = "INCREASE_DATA_RETENTION"
UpdateDataRetentionOperationDecreaseDataRetention UpdateDataRetentionOperation = "DECREASE_DATA_RETENTION"
)
// Values returns all known values for UpdateDataRetentionOperation. 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 (UpdateDataRetentionOperation) Values() []UpdateDataRetentionOperation {
return []UpdateDataRetentionOperation{
"INCREASE_DATA_RETENTION",
"DECREASE_DATA_RETENTION",
}
}
|