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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Object specifying a stream’s audio configuration, as set up by the broadcaster
// (usually in an encoder). This is part of the IngestConfiguration object and used
// for monitoring stream health.
type AudioConfiguration struct {
// Number of audio channels.
Channels int64
// Codec used for the audio encoding.
Codec *string
// Number of audio samples recorded per second.
SampleRate int64
// The expected ingest bitrate (bits per second). This is configured in the
// encoder.
TargetBitrate int64
noSmithyDocumentSerde
}
// Error related to a specific channel, specified by its ARN.
type BatchError struct {
// Channel ARN.
Arn *string
// Error code.
Code *string
// Error message, determined by the application.
Message *string
noSmithyDocumentSerde
}
// Object specifying a channel.
type Channel struct {
// Channel ARN.
Arn *string
// Whether the channel is private (enabled for playback authorization). Default:
// false.
Authorized bool
// Channel ingest endpoint, part of the definition of an ingest server, used when
// you set up streaming software.
IngestEndpoint *string
// Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full
// HD. Use LOW for near-real-time interaction with viewers. Default: LOW. (Note: In
// the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard,
// respectively.)
LatencyMode ChannelLatencyMode
// Channel name.
Name *string
// Channel playback URL.
PlaybackUrl *string
// Recording-configuration ARN. A value other than an empty string indicates that
// recording is enabled. Default: "" (empty string, recording is disabled).
RecordingConfigurationArn *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
// Channel type, which determines the allowable resolution and bitrate. If you
// exceed the allowable resolution or bitrate, the stream probably will disconnect
// immediately. Default: STANDARD. Valid values:
//
// * STANDARD: Video is transcoded:
// multiple qualities are generated from the original input, to automatically give
// viewers the best experience for their devices and network conditions.
// Transcoding allows higher playback quality across a range of download speeds.
// Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is
// transcoded only for renditions 360p and below; above that, audio is passed
// through. This is the default.
//
// * BASIC: Video is transmuxed: Amazon IVS delivers
// the original input to viewers. The viewer’s video-quality choice is limited to
// the original input. Resolution can be up to 1080p and bitrate can be up to 1.5
// Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
Type ChannelType
noSmithyDocumentSerde
}
// Summary information about a channel.
type ChannelSummary struct {
// Channel ARN.
Arn *string
// Whether the channel is private (enabled for playback authorization). Default:
// false.
Authorized bool
// Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full
// HD. Use LOW for near-real-time interaction with viewers. Default: LOW. (Note: In
// the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard,
// respectively.)
LatencyMode ChannelLatencyMode
// Channel name.
Name *string
// Recording-configuration ARN. A value other than an empty string indicates that
// recording is enabled. Default: "" (empty string, recording is disabled).
RecordingConfigurationArn *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
noSmithyDocumentSerde
}
// A complex type that describes a location where recorded videos will be stored.
// Each member represents a type of destination configuration. For recording, you
// define one and only one type of destination configuration.
type DestinationConfiguration struct {
// An S3 destination configuration where recorded videos will be stored.
S3 *S3DestinationConfiguration
noSmithyDocumentSerde
}
// Object specifying the ingest configuration set up by the broadcaster, usually in
// an encoder.
type IngestConfiguration struct {
// Encoder settings for audio.
Audio *AudioConfiguration
// Encoder settings for video.
Video *VideoConfiguration
noSmithyDocumentSerde
}
// A key pair used to sign and validate a playback authorization token.
type PlaybackKeyPair struct {
// Key-pair ARN.
Arn *string
// Key-pair identifier.
Fingerprint *string
// Playback-key-pair name. The value does not need to be unique.
Name *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
noSmithyDocumentSerde
}
// Summary information about a playback key pair.
type PlaybackKeyPairSummary struct {
// Key-pair ARN.
Arn *string
// Playback-key-pair name. The value does not need to be unique.
Name *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
noSmithyDocumentSerde
}
// An object representing a configuration to record a channel stream.
type RecordingConfiguration struct {
// Recording-configuration ARN.
//
// This member is required.
Arn *string
// A complex type that contains information about where recorded video will be
// stored.
//
// This member is required.
DestinationConfiguration *DestinationConfiguration
// Indicates the current state of the recording configuration. When the state is
// ACTIVE, the configuration is ready for recording a channel stream.
//
// This member is required.
State RecordingConfigurationState
// Recording-configuration name. The value does not need to be unique.
Name *string
// If a broadcast disconnects and then reconnects within the specified interval,
// the multiple streams will be considered a single broadcast and merged together.
// Default: 0.
RecordingReconnectWindowSeconds int32
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
// A complex type that allows you to enable/disable the recording of thumbnails for
// a live session and modify the interval at which thumbnails are generated for the
// live session.
ThumbnailConfiguration *ThumbnailConfiguration
noSmithyDocumentSerde
}
// Summary information about a RecordingConfiguration.
type RecordingConfigurationSummary struct {
// Recording-configuration ARN.
//
// This member is required.
Arn *string
// A complex type that contains information about where recorded video will be
// stored.
//
// This member is required.
DestinationConfiguration *DestinationConfiguration
// Indicates the current state of the recording configuration. When the state is
// ACTIVE, the configuration is ready for recording a channel stream.
//
// This member is required.
State RecordingConfigurationState
// Recording-configuration name. The value does not need to be unique.
Name *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
noSmithyDocumentSerde
}
// A complex type that describes an S3 location where recorded videos will be
// stored.
type S3DestinationConfiguration struct {
// Location (S3 bucket name) where recorded videos will be stored.
//
// This member is required.
BucketName *string
noSmithyDocumentSerde
}
// Specifies a live video stream that has been ingested and distributed.
type Stream struct {
// Channel ARN for the stream.
ChannelArn *string
// The stream’s health.
Health StreamHealth
// URL of the master playlist, required by the video player to play the HLS stream.
PlaybackUrl *string
// Time of the stream’s start. This is an ISO 8601 timestamp; note that this is
// returned as a string.
StartTime *time.Time
// The stream’s state.
State StreamState
// Unique identifier for a live or previously live stream in the specified channel.
StreamId *string
// A count of concurrent views of the stream. Typically, a new view appears in
// viewerCount within 15 seconds of when video playback starts and a view is
// removed from viewerCount within 1 minute of when video playback ends. A value of
// -1 indicates that the request timed out; in this case, retry.
ViewerCount int64
noSmithyDocumentSerde
}
// Object specifying a stream’s events. For a list of events, see Using Amazon
// EventBridge with Amazon IVS
// (https://docs.aws.amazon.com/ivs/latest/userguide/eventbridge.html).
type StreamEvent struct {
// Time when the event occurred. This is an ISO 8601 timestamp; note that this is
// returned as a string.
EventTime *time.Time
// Name that identifies the stream event within a type.
Name *string
// Logical group for certain events.
Type *string
noSmithyDocumentSerde
}
// Object specifying the stream attribute on which to filter.
type StreamFilters struct {
// The stream’s health.
Health StreamHealth
noSmithyDocumentSerde
}
// Object specifying a stream key.
type StreamKey struct {
// Stream-key ARN.
Arn *string
// Channel ARN for the stream.
ChannelArn *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
// Stream-key value.
Value *string
noSmithyDocumentSerde
}
// Summary information about a stream key.
type StreamKeySummary struct {
// Stream-key ARN.
Arn *string
// Channel ARN for the stream.
ChannelArn *string
// Array of 1-50 maps, each of the form string:string (key:value). See Tagging
// Amazon Web Services Resources
// (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) for more
// information, including restrictions that apply to tags and "Tag naming limits
// and requirements"; Amazon IVS has no service-specific constraints beyond what is
// documented there.
Tags map[string]string
noSmithyDocumentSerde
}
// Object that captures the Amazon IVS configuration that the customer provisioned,
// the ingest configurations that the broadcaster used, and the most recent Amazon
// IVS stream events it encountered.
type StreamSession struct {
// The properties of the channel at the time of going live.
Channel *Channel
// Time when the channel went offline. This is an ISO 8601 timestamp; note that
// this is returned as a string. For live streams, this is NULL.
EndTime *time.Time
// The properties of the incoming RTMP stream for the stream.
IngestConfiguration *IngestConfiguration
// The properties of recording the live stream.
RecordingConfiguration *RecordingConfiguration
// Time when the channel went live. This is an ISO 8601 timestamp; note that this
// is returned as a string.
StartTime *time.Time
// Unique identifier for a live or previously live stream in the specified channel.
StreamId *string
// List of Amazon IVS events that the stream encountered. The list is sorted by
// most recent events and contains up to 500 events. For Amazon IVS events, see
// Using Amazon EventBridge with Amazon IVS
// (https://docs.aws.amazon.com/ivs/latest/userguide/eventbridge.html).
TruncatedEvents []StreamEvent
noSmithyDocumentSerde
}
// Summary information about a stream session.
type StreamSessionSummary struct {
// Time when the channel went offline. This is an ISO 8601 timestamp; note that
// this is returned as a string. For live streams, this is NULL.
EndTime *time.Time
// If true, this stream encountered a quota breach or failure.
HasErrorEvent bool
// Time when the channel went live. This is an ISO 8601 timestamp; note that this
// is returned as a string.
StartTime *time.Time
// Unique identifier for a live or previously live stream in the specified channel.
StreamId *string
noSmithyDocumentSerde
}
// Summary information about a stream.
type StreamSummary struct {
// Channel ARN for the stream.
ChannelArn *string
// The stream’s health.
Health StreamHealth
// Time of the stream’s start. This is an ISO 8601 timestamp; note that this is
// returned as a string.
StartTime *time.Time
// The stream’s state.
State StreamState
// Unique identifier for a live or previously live stream in the specified channel.
StreamId *string
// A count of concurrent views of the stream. Typically, a new view appears in
// viewerCount within 15 seconds of when video playback starts and a view is
// removed from viewerCount within 1 minute of when video playback ends. A value of
// -1 indicates that the request timed out; in this case, retry.
ViewerCount int64
noSmithyDocumentSerde
}
// An object representing a configuration of thumbnails for recorded video.
type ThumbnailConfiguration struct {
// Thumbnail recording mode. Default: INTERVAL.
RecordingMode RecordingMode
// The targeted thumbnail-generation interval in seconds. This is configurable (and
// required) only if recordingMode is INTERVAL. Default: 60. Important: Setting a
// value for targetIntervalSeconds does not guarantee that thumbnails are generated
// at the specified interval. For thumbnails to be generated at the
// targetIntervalSeconds interval, the IDR/Keyframe value for the input video must
// be less than the targetIntervalSeconds value. See Amazon IVS Streaming
// Configuration
// (https://docs.aws.amazon.com/ivs/latest/userguide/streaming-config.html) for
// information on setting IDR/Keyframe to the recommended value in video-encoder
// settings.
TargetIntervalSeconds int64
noSmithyDocumentSerde
}
// Object specifying a stream’s video configuration, as set up by the broadcaster
// (usually in an encoder). This is part of the IngestConfiguration object and used
// for monitoring stream health.
type VideoConfiguration struct {
// Indicates the degree of required decoder performance for a profile. Normally
// this is set automatically by the encoder. For details, see the H.264
// specification.
AvcLevel *string
// Indicates to the decoder the requirements for decoding the stream. For
// definitions of the valid values, see the H.264 specification.
AvcProfile *string
// Codec used for the video encoding.
Codec *string
// Software or hardware used to encode the video.
Encoder *string
// The expected ingest bitrate (bits per second). This is configured in the
// encoder.
TargetBitrate int64
// The expected ingest framerate. This is configured in the encoder.
TargetFramerate int64
// Video-resolution height in pixels.
VideoHeight int64
// Video-resolution width in pixels.
VideoWidth int64
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|