@aws-sdk/client-medialive 3.540.0 → 3.548.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist-cjs/index.js +154 -17
  2. package/dist-es/models/models_0.js +47 -15
  3. package/dist-es/models/models_1.js +31 -0
  4. package/dist-es/protocols/Aws_restJson1.js +54 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +50 -0
  6. package/dist-types/commands/DeleteChannelCommand.d.ts +25 -0
  7. package/dist-types/commands/DescribeChannelCommand.d.ts +25 -0
  8. package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeThumbnailsCommand.d.ts +1 -1
  13. package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +25 -0
  14. package/dist-types/commands/StartChannelCommand.d.ts +25 -0
  15. package/dist-types/commands/StopChannelCommand.d.ts +25 -0
  16. package/dist-types/commands/UpdateChannelClassCommand.d.ts +25 -0
  17. package/dist-types/commands/UpdateChannelCommand.d.ts +50 -0
  18. package/dist-types/models/models_0.d.ts +167 -156
  19. package/dist-types/models/models_1.d.ts +247 -363
  20. package/dist-types/models/models_2.d.ts +364 -2
  21. package/dist-types/ts3.4/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/DescribeThumbnailsCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +73 -48
  27. package/dist-types/ts3.4/models/models_1.d.ts +81 -91
  28. package/dist-types/ts3.4/models/models_2.d.ts +93 -1
  29. package/package.json +1 -1
@@ -1,7 +1,163 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { StreamingBlobTypes } from "@smithy/types";
3
3
  import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
4
- import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ColorCorrection, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsAkamaiSettings, HlsBasicPutSettings, HlsCaptionLanguageSetting, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsMediaStoreSettings, HlsS3Settings, HlsWebdavHttpTransferMode, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceSettings, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexState, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
4
+ import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, CmafIngestGroupSettings, ColorCorrection, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceSettings, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexState, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, S3CannedAcl, VpcOutputSettingsDescription } from "./models_0";
5
+ /**
6
+ * @public
7
+ * @enum
8
+ */
9
+ export declare const HlsEncryptionType: {
10
+ readonly AES128: "AES128";
11
+ readonly SAMPLE_AES: "SAMPLE_AES";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type HlsEncryptionType = (typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
17
+ /**
18
+ * @public
19
+ * @enum
20
+ */
21
+ export declare const HlsAkamaiHttpTransferMode: {
22
+ readonly CHUNKED: "CHUNKED";
23
+ readonly NON_CHUNKED: "NON_CHUNKED";
24
+ };
25
+ /**
26
+ * @public
27
+ */
28
+ export type HlsAkamaiHttpTransferMode = (typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
29
+ /**
30
+ * Hls Akamai Settings
31
+ * @public
32
+ */
33
+ export interface HlsAkamaiSettings {
34
+ /**
35
+ * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
36
+ * @public
37
+ */
38
+ ConnectionRetryInterval?: number;
39
+ /**
40
+ * Size in seconds of file cache for streaming outputs.
41
+ * @public
42
+ */
43
+ FilecacheDuration?: number;
44
+ /**
45
+ * Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.
46
+ * @public
47
+ */
48
+ HttpTransferMode?: HlsAkamaiHttpTransferMode;
49
+ /**
50
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
51
+ * @public
52
+ */
53
+ NumRetries?: number;
54
+ /**
55
+ * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
56
+ * @public
57
+ */
58
+ RestartDelay?: number;
59
+ /**
60
+ * Salt for authenticated Akamai.
61
+ * @public
62
+ */
63
+ Salt?: string;
64
+ /**
65
+ * Token parameter for authenticated akamai. If not specified, _gda_ is used.
66
+ * @public
67
+ */
68
+ Token?: string;
69
+ }
70
+ /**
71
+ * Hls Basic Put Settings
72
+ * @public
73
+ */
74
+ export interface HlsBasicPutSettings {
75
+ /**
76
+ * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
77
+ * @public
78
+ */
79
+ ConnectionRetryInterval?: number;
80
+ /**
81
+ * Size in seconds of file cache for streaming outputs.
82
+ * @public
83
+ */
84
+ FilecacheDuration?: number;
85
+ /**
86
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
87
+ * @public
88
+ */
89
+ NumRetries?: number;
90
+ /**
91
+ * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
92
+ * @public
93
+ */
94
+ RestartDelay?: number;
95
+ }
96
+ /**
97
+ * @public
98
+ * @enum
99
+ */
100
+ export declare const HlsMediaStoreStorageClass: {
101
+ readonly TEMPORAL: "TEMPORAL";
102
+ };
103
+ /**
104
+ * @public
105
+ */
106
+ export type HlsMediaStoreStorageClass = (typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
107
+ /**
108
+ * Hls Media Store Settings
109
+ * @public
110
+ */
111
+ export interface HlsMediaStoreSettings {
112
+ /**
113
+ * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
114
+ * @public
115
+ */
116
+ ConnectionRetryInterval?: number;
117
+ /**
118
+ * Size in seconds of file cache for streaming outputs.
119
+ * @public
120
+ */
121
+ FilecacheDuration?: number;
122
+ /**
123
+ * When set to temporal, output files are stored in non-persistent memory for faster reading and writing.
124
+ * @public
125
+ */
126
+ MediaStoreStorageClass?: HlsMediaStoreStorageClass;
127
+ /**
128
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
129
+ * @public
130
+ */
131
+ NumRetries?: number;
132
+ /**
133
+ * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
134
+ * @public
135
+ */
136
+ RestartDelay?: number;
137
+ }
138
+ /**
139
+ * Hls S3 Settings
140
+ * @public
141
+ */
142
+ export interface HlsS3Settings {
143
+ /**
144
+ * Specify the canned ACL to apply to each S3 request. Defaults to none.
145
+ * @public
146
+ */
147
+ CannedAcl?: S3CannedAcl;
148
+ }
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const HlsWebdavHttpTransferMode: {
154
+ readonly CHUNKED: "CHUNKED";
155
+ readonly NON_CHUNKED: "NON_CHUNKED";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type HlsWebdavHttpTransferMode = (typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
5
161
  /**
6
162
  * Hls Webdav Settings
7
163
  * @public
@@ -1007,6 +1163,11 @@ export interface OutputGroupSettings {
1007
1163
  * @public
1008
1164
  */
1009
1165
  UdpGroupSettings?: UdpGroupSettings;
1166
+ /**
1167
+ * Cmaf Ingest Group Settings
1168
+ * @public
1169
+ */
1170
+ CmafIngestGroupSettings?: CmafIngestGroupSettings;
1010
1171
  }
1011
1172
  /**
1012
1173
  * Output groups for this Live Event. Output groups contain information about where streams should be distributed.
@@ -2983,6 +3144,30 @@ export declare const H265LookAheadRateControl: {
2983
3144
  * @public
2984
3145
  */
2985
3146
  export type H265LookAheadRateControl = (typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
3147
+ /**
3148
+ * @public
3149
+ * @enum
3150
+ */
3151
+ export declare const H265MvOverPictureBoundaries: {
3152
+ readonly DISABLED: "DISABLED";
3153
+ readonly ENABLED: "ENABLED";
3154
+ };
3155
+ /**
3156
+ * @public
3157
+ */
3158
+ export type H265MvOverPictureBoundaries = (typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
3159
+ /**
3160
+ * @public
3161
+ * @enum
3162
+ */
3163
+ export declare const H265MvTemporalPredictor: {
3164
+ readonly DISABLED: "DISABLED";
3165
+ readonly ENABLED: "ENABLED";
3166
+ };
3167
+ /**
3168
+ * @public
3169
+ */
3170
+ export type H265MvTemporalPredictor = (typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
2986
3171
  /**
2987
3172
  * @public
2988
3173
  * @enum
@@ -3044,6 +3229,18 @@ export declare const H265Tier: {
3044
3229
  * @public
3045
3230
  */
3046
3231
  export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
3232
+ /**
3233
+ * @public
3234
+ * @enum
3235
+ */
3236
+ export declare const H265TilePadding: {
3237
+ readonly NONE: "NONE";
3238
+ readonly PADDED: "PADDED";
3239
+ };
3240
+ /**
3241
+ * @public
3242
+ */
3243
+ export type H265TilePadding = (typeof H265TilePadding)[keyof typeof H265TilePadding];
3047
3244
  /**
3048
3245
  * @public
3049
3246
  * @enum
@@ -3056,6 +3253,18 @@ export declare const H265TimecodeInsertionBehavior: {
3056
3253
  * @public
3057
3254
  */
3058
3255
  export type H265TimecodeInsertionBehavior = (typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
3256
+ /**
3257
+ * @public
3258
+ * @enum
3259
+ */
3260
+ export declare const H265TreeblockSize: {
3261
+ readonly AUTO: "AUTO";
3262
+ readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
3263
+ };
3264
+ /**
3265
+ * @public
3266
+ */
3267
+ export type H265TreeblockSize = (typeof H265TreeblockSize)[keyof typeof H265TreeblockSize];
3059
3268
  /**
3060
3269
  * H265 Settings
3061
3270
  * @public
@@ -3229,6 +3438,43 @@ export interface H265Settings {
3229
3438
  * @public
3230
3439
  */
3231
3440
  TimecodeBurninSettings?: TimecodeBurninSettings;
3441
+ /**
3442
+ * If you are setting up the picture as a tile, you must set this to "disabled". In all other configurations, you typically enter "enabled".
3443
+ * @public
3444
+ */
3445
+ MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
3446
+ /**
3447
+ * If you are setting up the picture as a tile, you must set this to "disabled". In other configurations, you typically enter "enabled".
3448
+ * @public
3449
+ */
3450
+ MvTemporalPredictor?: H265MvTemporalPredictor;
3451
+ /**
3452
+ * Set this field to set up the picture as a tile. You must also set tileWidth.
3453
+ * The tile height must result in 22 or fewer rows in the frame. The tile width
3454
+ * must result in 20 or fewer columns in the frame. And finally, the product of the
3455
+ * column count and row count must be 64 of less.
3456
+ * If the tile width and height are specified, MediaLive will override the video
3457
+ * codec slices field with a value that MediaLive calculates
3458
+ * @public
3459
+ */
3460
+ TileHeight?: number;
3461
+ /**
3462
+ * Set to "padded" to force MediaLive to add padding to the frame, to obtain a frame that is a whole multiple of the tile size.
3463
+ * If you are setting up the picture as a tile, you must enter "padded".
3464
+ * In all other configurations, you typically enter "none".
3465
+ * @public
3466
+ */
3467
+ TilePadding?: H265TilePadding;
3468
+ /**
3469
+ * Set this field to set up the picture as a tile. See tileHeight for more information.
3470
+ * @public
3471
+ */
3472
+ TileWidth?: number;
3473
+ /**
3474
+ * Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
3475
+ * @public
3476
+ */
3477
+ TreeblockSize?: H265TreeblockSize;
3232
3478
  }
3233
3479
  /**
3234
3480
  * @public
@@ -6289,368 +6535,6 @@ export interface DescribeMultiplexResponse {
6289
6535
  */
6290
6536
  Tags?: Record<string, string>;
6291
6537
  }
6292
- /**
6293
- * Placeholder documentation for DescribeMultiplexProgramRequest
6294
- * @public
6295
- */
6296
- export interface DescribeMultiplexProgramRequest {
6297
- /**
6298
- * The ID of the multiplex that the program belongs to.
6299
- * @public
6300
- */
6301
- MultiplexId: string | undefined;
6302
- /**
6303
- * The name of the program.
6304
- * @public
6305
- */
6306
- ProgramName: string | undefined;
6307
- }
6308
- /**
6309
- * Placeholder documentation for DescribeMultiplexProgramResponse
6310
- * @public
6311
- */
6312
- export interface DescribeMultiplexProgramResponse {
6313
- /**
6314
- * The MediaLive channel associated with the program.
6315
- * @public
6316
- */
6317
- ChannelId?: string;
6318
- /**
6319
- * The settings for this multiplex program.
6320
- * @public
6321
- */
6322
- MultiplexProgramSettings?: MultiplexProgramSettings;
6323
- /**
6324
- * The packet identifier map for this multiplex program.
6325
- * @public
6326
- */
6327
- PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
6328
- /**
6329
- * Contains information about the current sources for the specified program in the specified multiplex. Keep in mind that each multiplex pipeline connects to both pipelines in a given source channel (the channel identified by the program). But only one of those channel pipelines is ever active at one time.
6330
- * @public
6331
- */
6332
- PipelineDetails?: MultiplexProgramPipelineDetail[];
6333
- /**
6334
- * The name of the multiplex program.
6335
- * @public
6336
- */
6337
- ProgramName?: string;
6338
- }
6339
- /**
6340
- * Placeholder documentation for DescribeOfferingRequest
6341
- * @public
6342
- */
6343
- export interface DescribeOfferingRequest {
6344
- /**
6345
- * Unique offering ID, e.g. '87654321'
6346
- * @public
6347
- */
6348
- OfferingId: string | undefined;
6349
- }
6350
- /**
6351
- * Placeholder documentation for DescribeOfferingResponse
6352
- * @public
6353
- */
6354
- export interface DescribeOfferingResponse {
6355
- /**
6356
- * Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
6357
- * @public
6358
- */
6359
- Arn?: string;
6360
- /**
6361
- * Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
6362
- * @public
6363
- */
6364
- CurrencyCode?: string;
6365
- /**
6366
- * Lease duration, e.g. '12'
6367
- * @public
6368
- */
6369
- Duration?: number;
6370
- /**
6371
- * Units for duration, e.g. 'MONTHS'
6372
- * @public
6373
- */
6374
- DurationUnits?: OfferingDurationUnits;
6375
- /**
6376
- * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
6377
- * @public
6378
- */
6379
- FixedPrice?: number;
6380
- /**
6381
- * Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
6382
- * @public
6383
- */
6384
- OfferingDescription?: string;
6385
- /**
6386
- * Unique offering ID, e.g. '87654321'
6387
- * @public
6388
- */
6389
- OfferingId?: string;
6390
- /**
6391
- * Offering type, e.g. 'NO_UPFRONT'
6392
- * @public
6393
- */
6394
- OfferingType?: OfferingType;
6395
- /**
6396
- * AWS region, e.g. 'us-west-2'
6397
- * @public
6398
- */
6399
- Region?: string;
6400
- /**
6401
- * Resource configuration details
6402
- * @public
6403
- */
6404
- ResourceSpecification?: ReservationResourceSpecification;
6405
- /**
6406
- * Recurring usage charge for each reserved resource, e.g. '157.0'
6407
- * @public
6408
- */
6409
- UsagePrice?: number;
6410
- }
6411
- /**
6412
- * Placeholder documentation for DescribeReservationRequest
6413
- * @public
6414
- */
6415
- export interface DescribeReservationRequest {
6416
- /**
6417
- * Unique reservation ID, e.g. '1234567'
6418
- * @public
6419
- */
6420
- ReservationId: string | undefined;
6421
- }
6422
- /**
6423
- * Placeholder documentation for DescribeReservationResponse
6424
- * @public
6425
- */
6426
- export interface DescribeReservationResponse {
6427
- /**
6428
- * Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
6429
- * @public
6430
- */
6431
- Arn?: string;
6432
- /**
6433
- * Number of reserved resources
6434
- * @public
6435
- */
6436
- Count?: number;
6437
- /**
6438
- * Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
6439
- * @public
6440
- */
6441
- CurrencyCode?: string;
6442
- /**
6443
- * Lease duration, e.g. '12'
6444
- * @public
6445
- */
6446
- Duration?: number;
6447
- /**
6448
- * Units for duration, e.g. 'MONTHS'
6449
- * @public
6450
- */
6451
- DurationUnits?: OfferingDurationUnits;
6452
- /**
6453
- * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
6454
- * @public
6455
- */
6456
- End?: string;
6457
- /**
6458
- * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
6459
- * @public
6460
- */
6461
- FixedPrice?: number;
6462
- /**
6463
- * User specified reservation name
6464
- * @public
6465
- */
6466
- Name?: string;
6467
- /**
6468
- * Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
6469
- * @public
6470
- */
6471
- OfferingDescription?: string;
6472
- /**
6473
- * Unique offering ID, e.g. '87654321'
6474
- * @public
6475
- */
6476
- OfferingId?: string;
6477
- /**
6478
- * Offering type, e.g. 'NO_UPFRONT'
6479
- * @public
6480
- */
6481
- OfferingType?: OfferingType;
6482
- /**
6483
- * AWS region, e.g. 'us-west-2'
6484
- * @public
6485
- */
6486
- Region?: string;
6487
- /**
6488
- * Renewal settings for the reservation
6489
- * @public
6490
- */
6491
- RenewalSettings?: RenewalSettings;
6492
- /**
6493
- * Unique reservation ID, e.g. '1234567'
6494
- * @public
6495
- */
6496
- ReservationId?: string;
6497
- /**
6498
- * Resource configuration details
6499
- * @public
6500
- */
6501
- ResourceSpecification?: ReservationResourceSpecification;
6502
- /**
6503
- * Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
6504
- * @public
6505
- */
6506
- Start?: string;
6507
- /**
6508
- * Current state of reservation, e.g. 'ACTIVE'
6509
- * @public
6510
- */
6511
- State?: ReservationState;
6512
- /**
6513
- * A collection of key-value pairs
6514
- * @public
6515
- */
6516
- Tags?: Record<string, string>;
6517
- /**
6518
- * Recurring usage charge for each reserved resource, e.g. '157.0'
6519
- * @public
6520
- */
6521
- UsagePrice?: number;
6522
- }
6523
- /**
6524
- * Placeholder documentation for DescribeScheduleRequest
6525
- * @public
6526
- */
6527
- export interface DescribeScheduleRequest {
6528
- /**
6529
- * Id of the channel whose schedule is being updated.
6530
- * @public
6531
- */
6532
- ChannelId: string | undefined;
6533
- /**
6534
- * Placeholder documentation for MaxResults
6535
- * @public
6536
- */
6537
- MaxResults?: number;
6538
- /**
6539
- * Placeholder documentation for __string
6540
- * @public
6541
- */
6542
- NextToken?: string;
6543
- }
6544
- /**
6545
- * Placeholder documentation for DescribeScheduleResponse
6546
- * @public
6547
- */
6548
- export interface DescribeScheduleResponse {
6549
- /**
6550
- * The next token; for use in pagination.
6551
- * @public
6552
- */
6553
- NextToken?: string;
6554
- /**
6555
- * The list of actions in the schedule.
6556
- * @public
6557
- */
6558
- ScheduleActions?: ScheduleAction[];
6559
- }
6560
- /**
6561
- * Placeholder documentation for DescribeThumbnailsRequest
6562
- * @public
6563
- */
6564
- export interface DescribeThumbnailsRequest {
6565
- /**
6566
- * Unique ID of the channel
6567
- * @public
6568
- */
6569
- ChannelId: string | undefined;
6570
- /**
6571
- * Pipeline ID ("0" or "1")
6572
- * @public
6573
- */
6574
- PipelineId: string | undefined;
6575
- /**
6576
- * thumbnail type
6577
- * @public
6578
- */
6579
- ThumbnailType: string | undefined;
6580
- }
6581
- /**
6582
- * Placeholder documentation for DescribeThumbnailsResponse
6583
- * @public
6584
- */
6585
- export interface DescribeThumbnailsResponse {
6586
- /**
6587
- * Placeholder documentation for __listOfThumbnailDetail
6588
- * @public
6589
- */
6590
- ThumbnailDetails?: ThumbnailDetail[];
6591
- }
6592
- /**
6593
- * Parameters required to attach a MediaConnect flow to the device.
6594
- * @public
6595
- */
6596
- export interface InputDeviceMediaConnectConfigurableSettings {
6597
- /**
6598
- * The ARN of the MediaConnect flow to attach this device to.
6599
- * @public
6600
- */
6601
- FlowArn?: string;
6602
- /**
6603
- * The ARN for the role that MediaLive assumes to access the attached flow and secret. For more information about how to create this role, see the MediaLive user guide.
6604
- * @public
6605
- */
6606
- RoleArn?: string;
6607
- /**
6608
- * The ARN for the secret that holds the encryption key to encrypt the content output by the device.
6609
- * @public
6610
- */
6611
- SecretArn?: string;
6612
- /**
6613
- * The name of the MediaConnect Flow source to stream to.
6614
- * @public
6615
- */
6616
- SourceName?: string;
6617
- }
6618
- /**
6619
- * Configurable settings for the input device.
6620
- * @public
6621
- */
6622
- export interface InputDeviceConfigurableSettings {
6623
- /**
6624
- * The input source that you want to use. If the device has a source connected to only one of its input ports, or if you don't care which source the device sends, specify Auto. If the device has sources connected to both its input ports, and you want to use a specific source, specify the source.
6625
- * @public
6626
- */
6627
- ConfiguredInput?: InputDeviceConfiguredInput;
6628
- /**
6629
- * The maximum bitrate in bits per second. Set a value here to throttle the bitrate of the source video.
6630
- * @public
6631
- */
6632
- MaxBitrate?: number;
6633
- /**
6634
- * The Link device's buffer size (latency) in milliseconds (ms).
6635
- * @public
6636
- */
6637
- LatencyMs?: number;
6638
- /**
6639
- * Choose the codec for the video that the device produces. Only UHD devices can specify this parameter.
6640
- * @public
6641
- */
6642
- Codec?: InputDeviceCodec;
6643
- /**
6644
- * To attach this device to a MediaConnect flow, specify these parameters. To detach an existing flow, enter \{\} for the value of mediaconnectSettings. Only UHD devices can specify this parameter.
6645
- * @public
6646
- */
6647
- MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
6648
- /**
6649
- * An array of eight audio configurations, one for each audio pair in the source. Set up each audio configuration either to exclude the pair, or to format it and include it in the output from the device. This parameter applies only to UHD devices, and only when the device is configured as the source for a MediaConnect flow. For an HD device, you configure the audio by setting up audio selectors in the channel configuration.
6650
- * @public
6651
- */
6652
- AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
6653
- }
6654
6538
  /**
6655
6539
  * @internal
6656
6540
  */