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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// A MediaPackage VOD Asset resource.
type AssetShallow struct {
// The ARN of the Asset.
Arn *string
// The time the Asset was initially submitted for Ingest.
CreatedAt *string
// The unique identifier for the Asset.
Id *string
// The ID of the PackagingGroup for the Asset.
PackagingGroupId *string
// The resource ID to include in SPEKE key requests.
ResourceId *string
// ARN of the source object in S3.
SourceArn *string
// The IAM role ARN used to access the source S3 bucket.
SourceRoleArn *string
// A collection of tags associated with a resource
Tags map[string]string
noSmithyDocumentSerde
}
// CDN Authorization credentials
type Authorization struct {
// The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager that is
// used for CDN authorization.
//
// This member is required.
CdnIdentifierSecret *string
// The Amazon Resource Name (ARN) for the IAM role that allows MediaPackage to
// communicate with AWS Secrets Manager.
//
// This member is required.
SecretsRoleArn *string
noSmithyDocumentSerde
}
// A CMAF encryption configuration.
type CmafEncryption struct {
// A configuration for accessing an external Secure Packager and Encoder Key
// Exchange (SPEKE) service that will provide encryption keys.
//
// This member is required.
SpekeKeyProvider *SpekeKeyProvider
// An optional 128-bit, 16-byte hex value represented by a 32-character string,
// used in conjunction with the key for encrypting blocks. If you don't specify a
// value, then MediaPackage creates the constant initialization vector (IV).
ConstantInitializationVector *string
noSmithyDocumentSerde
}
// A CMAF packaging configuration.
type CmafPackage struct {
// A list of HLS manifest configurations.
//
// This member is required.
HlsManifests []HlsManifest
// A CMAF encryption configuration.
Encryption *CmafEncryption
// When includeEncoderConfigurationInSegments is set to true, MediaPackage places
// your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and
// Video Parameter Set (VPS) metadata in every video segment instead of in the init
// fragment. This lets you use different SPS/PPS/VPS settings for your assets
// during content playback.
IncludeEncoderConfigurationInSegments *bool
// Duration (in seconds) of each fragment. Actual fragments will be rounded to the
// nearest multiple of the source fragment duration.
SegmentDurationSeconds *int32
noSmithyDocumentSerde
}
// A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
type DashEncryption struct {
// A configuration for accessing an external Secure Packager and Encoder Key
// Exchange (SPEKE) service that will provide encryption keys.
//
// This member is required.
SpekeKeyProvider *SpekeKeyProvider
noSmithyDocumentSerde
}
// A DASH manifest configuration.
type DashManifest struct {
// Determines the position of some tags in the Media Presentation Description
// (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are
// included in each Representation. When set to COMPACT, duplicate elements are
// combined and presented at the AdaptationSet level.
ManifestLayout ManifestLayout
// An optional string to include in the name of the manifest.
ManifestName *string
// Minimum duration (in seconds) that a player will buffer media before starting
// the presentation.
MinBufferTimeSeconds *int32
// The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to
// "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
Profile Profile
// The source of scte markers used. When set to SEGMENTS, the scte markers are
// sourced from the segments of the ingested content. When set to MANIFEST, the
// scte markers are sourced from the manifest of the ingested content.
ScteMarkersSource ScteMarkersSource
// A StreamSelection configuration.
StreamSelection *StreamSelection
noSmithyDocumentSerde
}
// A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
type DashPackage struct {
// A list of DASH manifest configurations.
//
// This member is required.
DashManifests []DashManifest
// A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
Encryption *DashEncryption
// When includeEncoderConfigurationInSegments is set to true, MediaPackage places
// your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and
// Video Parameter Set (VPS) metadata in every video segment instead of in the init
// fragment. This lets you use different SPS/PPS/VPS settings for your assets
// during content playback.
IncludeEncoderConfigurationInSegments *bool
// When enabled, an I-Frame only stream will be included in the output.
IncludeIframeOnlyStream *bool
// A list of triggers that controls when the outgoing Dynamic Adaptive Streaming
// over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into
// multiple periods. If empty, the content will not be partitioned into more than
// one period. If the list contains "ADS", new periods will be created where the
// Asset contains SCTE-35 ad markers.
PeriodTriggers []PeriodTriggersElement
// Duration (in seconds) of each segment. Actual segments will be rounded to the
// nearest multiple of the source segment duration.
SegmentDurationSeconds *int32
// Determines the type of SegmentTemplate included in the Media Presentation
// Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is
// presented in each SegmentTemplate, with $Number$ media URLs. When set to
// TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with
// $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is
// included in each SegmentTemplate, with $Number$ media URLs.
SegmentTemplateFormat SegmentTemplateFormat
noSmithyDocumentSerde
}
// Configure egress access logging.
type EgressAccessLogs struct {
// Customize the log group name.
LogGroupName *string
noSmithyDocumentSerde
}
// The endpoint URL used to access an Asset using one PackagingConfiguration.
type EgressEndpoint struct {
// The ID of the PackagingConfiguration being applied to the Asset.
PackagingConfigurationId *string
// The current processing status of the asset used for the packaging
// configuration. The status can be either QUEUED, PROCESSING, PLAYABLE, or FAILED.
// Status information won't be available for most assets ingested before
// 2021-09-30.
Status *string
// The URL of the parent manifest for the repackaged Asset.
Url *string
noSmithyDocumentSerde
}
// Use encryptionContractConfiguration to configure one or more content encryption
// keys for your endpoints that use SPEKE 2.0. The encryption contract defines
// which content keys are used to encrypt the audio and video tracks in your
// stream. To configure the encryption contract, specify which audio and video
// encryption presets to use. Note the following considerations when using
// encryptionContractConfiguration: encryptionContractConfiguration can be used for
// DASH endpoints that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3
// specification. You must disable key rotation for this endpoint by setting
// keyRotationIntervalSeconds to 0.
type EncryptionContractConfiguration struct {
// A collection of audio encryption presets.
//
// This member is required.
PresetSpeke20Audio PresetSpeke20Audio
// A collection of video encryption presets.
//
// This member is required.
PresetSpeke20Video PresetSpeke20Video
noSmithyDocumentSerde
}
// An HTTP Live Streaming (HLS) encryption configuration.
type HlsEncryption struct {
// A configuration for accessing an external Secure Packager and Encoder Key
// Exchange (SPEKE) service that will provide encryption keys.
//
// This member is required.
SpekeKeyProvider *SpekeKeyProvider
// A constant initialization vector for encryption (optional). When not specified
// the initialization vector will be periodically rotated.
ConstantInitializationVector *string
// The encryption method to use.
EncryptionMethod EncryptionMethod
noSmithyDocumentSerde
}
// An HTTP Live Streaming (HLS) manifest configuration.
type HlsManifest struct {
// This setting controls how ad markers are included in the packaged
// OriginEndpoint. "NONE" will omit all SCTE-35 ad markers from the output.
// "PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad markers
// (comments) taken directly from the input HTTP Live Streaming (HLS) manifest.
// "SCTE35_ENHANCED" generates ad markers and blackout tags based on SCTE-35
// messages in the input source.
AdMarkers AdMarkers
// When enabled, an I-Frame only stream will be included in the output.
IncludeIframeOnlyStream *bool
// An optional string to include in the name of the manifest.
ManifestName *string
// The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag inserted
// into manifests. Additionally, when an interval is specified ID3Timed Metadata
// messages will be generated every 5 seconds using the ingest time of the content.
// If the interval is not specified, or set to 0, then no EXT-X-PROGRAM-DATE-TIME
// tags will be inserted into manifests and no ID3Timed Metadata messages will be
// generated. Note that irrespective of this parameter, if any ID3 Timed Metadata
// is found in HTTP Live Streaming (HLS) input, it will be passed through to HLS
// output.
ProgramDateTimeIntervalSeconds *int32
// When enabled, the EXT-X-KEY tag will be repeated in output manifests.
RepeatExtXKey *bool
// A StreamSelection configuration.
StreamSelection *StreamSelection
noSmithyDocumentSerde
}
// An HTTP Live Streaming (HLS) packaging configuration.
type HlsPackage struct {
// A list of HLS manifest configurations.
//
// This member is required.
HlsManifests []HlsManifest
// An HTTP Live Streaming (HLS) encryption configuration.
Encryption *HlsEncryption
// When enabled, MediaPackage passes through digital video broadcasting (DVB)
// subtitles into the output.
IncludeDvbSubtitles *bool
// Duration (in seconds) of each fragment. Actual fragments will be rounded to the
// nearest multiple of the source fragment duration.
SegmentDurationSeconds *int32
// When enabled, audio streams will be placed in rendition groups in the output.
UseAudioRenditionGroup *bool
noSmithyDocumentSerde
}
// A Microsoft Smooth Streaming (MSS) encryption configuration.
type MssEncryption struct {
// A configuration for accessing an external Secure Packager and Encoder Key
// Exchange (SPEKE) service that will provide encryption keys.
//
// This member is required.
SpekeKeyProvider *SpekeKeyProvider
noSmithyDocumentSerde
}
// A Microsoft Smooth Streaming (MSS) manifest configuration.
type MssManifest struct {
// An optional string to include in the name of the manifest.
ManifestName *string
// A StreamSelection configuration.
StreamSelection *StreamSelection
noSmithyDocumentSerde
}
// A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
type MssPackage struct {
// A list of MSS manifest configurations.
//
// This member is required.
MssManifests []MssManifest
// A Microsoft Smooth Streaming (MSS) encryption configuration.
Encryption *MssEncryption
// The duration (in seconds) of each segment.
SegmentDurationSeconds *int32
noSmithyDocumentSerde
}
// A MediaPackage VOD PackagingConfiguration resource.
type PackagingConfiguration struct {
// The ARN of the PackagingConfiguration.
Arn *string
// A CMAF packaging configuration.
CmafPackage *CmafPackage
// The time the PackagingConfiguration was created.
CreatedAt *string
// A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
DashPackage *DashPackage
// An HTTP Live Streaming (HLS) packaging configuration.
HlsPackage *HlsPackage
// The ID of the PackagingConfiguration.
Id *string
// A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
MssPackage *MssPackage
// The ID of a PackagingGroup.
PackagingGroupId *string
// A collection of tags associated with a resource
Tags map[string]string
noSmithyDocumentSerde
}
// A MediaPackage VOD PackagingGroup resource.
type PackagingGroup struct {
// The approximate asset count of the PackagingGroup.
ApproximateAssetCount *int32
// The ARN of the PackagingGroup.
Arn *string
// CDN Authorization credentials
Authorization *Authorization
// The time the PackagingGroup was created.
CreatedAt *string
// The fully qualified domain name for Assets in the PackagingGroup.
DomainName *string
// Configure egress access logging.
EgressAccessLogs *EgressAccessLogs
// The ID of the PackagingGroup.
Id *string
// A collection of tags associated with a resource
Tags map[string]string
noSmithyDocumentSerde
}
// A configuration for accessing an external Secure Packager and Encoder Key
// Exchange (SPEKE) service that will provide encryption keys.
type SpekeKeyProvider struct {
// An Amazon Resource Name (ARN) of an IAM role that AWS Elemental MediaPackage
// will assume when accessing the key provider service.
//
// This member is required.
RoleArn *string
// The system IDs to include in key requests.
//
// This member is required.
SystemIds []string
// The URL of the external key provider service.
//
// This member is required.
Url *string
// Use encryptionContractConfiguration to configure one or more content encryption
// keys for your endpoints that use SPEKE 2.0. The encryption contract defines
// which content keys are used to encrypt the audio and video tracks in your
// stream. To configure the encryption contract, specify which audio and video
// encryption presets to use. Note the following considerations when using
// encryptionContractConfiguration: encryptionContractConfiguration can be used for
// DASH endpoints that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3
// specification. You must disable key rotation for this endpoint by setting
// keyRotationIntervalSeconds to 0.
EncryptionContractConfiguration *EncryptionContractConfiguration
noSmithyDocumentSerde
}
// A StreamSelection configuration.
type StreamSelection struct {
// The maximum video bitrate (bps) to include in output.
MaxVideoBitsPerSecond *int32
// The minimum video bitrate (bps) to include in output.
MinVideoBitsPerSecond *int32
// A directive that determines the order of streams in the output.
StreamOrder StreamOrder
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|