@aws-sdk/client-mediapackagev2 3.696.0 → 3.699.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.
package/dist-cjs/index.js CHANGED
@@ -404,6 +404,8 @@ var ValidationExceptionType = {
404
404
  NUM_MANIFESTS_HIGH: "NUM_MANIFESTS_HIGH",
405
405
  NUM_MANIFESTS_LOW: "NUM_MANIFESTS_LOW",
406
406
  ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION",
407
+ ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING",
408
+ ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION",
407
409
  PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES: "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES",
408
410
  ROLE_ARN_INVALID_FORMAT: "ROLE_ARN_INVALID_FORMAT",
409
411
  ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE",
@@ -578,7 +580,9 @@ var se_CreateChannelCommand = /* @__PURE__ */ __name(async (input, context) => {
578
580
  (0, import_smithy_client.take)(input, {
579
581
  ChannelName: [],
580
582
  Description: [],
583
+ InputSwitchConfiguration: (_) => (0, import_smithy_client._json)(_),
581
584
  InputType: [],
585
+ OutputHeaderConfiguration: (_) => (0, import_smithy_client._json)(_),
582
586
  tags: [, (_) => (0, import_smithy_client._json)(_), `Tags`]
583
587
  })
584
588
  );
@@ -909,7 +913,9 @@ var se_UpdateChannelCommand = /* @__PURE__ */ __name(async (input, context) => {
909
913
  let body;
910
914
  body = JSON.stringify(
911
915
  (0, import_smithy_client.take)(input, {
912
- Description: []
916
+ Description: [],
917
+ InputSwitchConfiguration: (_) => (0, import_smithy_client._json)(_),
918
+ OutputHeaderConfiguration: (_) => (0, import_smithy_client._json)(_)
913
919
  })
914
920
  );
915
921
  b.m("PUT").h(headers).b(body);
@@ -984,8 +990,10 @@ var de_CreateChannelCommand = /* @__PURE__ */ __name(async (output, context) =>
984
990
  Description: import_smithy_client.expectString,
985
991
  ETag: import_smithy_client.expectString,
986
992
  IngestEndpoints: import_smithy_client._json,
993
+ InputSwitchConfiguration: import_smithy_client._json,
987
994
  InputType: import_smithy_client.expectString,
988
995
  ModifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
996
+ OutputHeaderConfiguration: import_smithy_client._json,
989
997
  Tags: import_smithy_client._json
990
998
  });
991
999
  Object.assign(contents, doc);
@@ -1135,8 +1143,10 @@ var de_GetChannelCommand = /* @__PURE__ */ __name(async (output, context) => {
1135
1143
  Description: import_smithy_client.expectString,
1136
1144
  ETag: import_smithy_client.expectString,
1137
1145
  IngestEndpoints: import_smithy_client._json,
1146
+ InputSwitchConfiguration: import_smithy_client._json,
1138
1147
  InputType: import_smithy_client.expectString,
1139
1148
  ModifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1149
+ OutputHeaderConfiguration: import_smithy_client._json,
1140
1150
  Tags: import_smithy_client._json
1141
1151
  });
1142
1152
  Object.assign(contents, doc);
@@ -1383,8 +1393,10 @@ var de_UpdateChannelCommand = /* @__PURE__ */ __name(async (output, context) =>
1383
1393
  Description: import_smithy_client.expectString,
1384
1394
  ETag: import_smithy_client.expectString,
1385
1395
  IngestEndpoints: import_smithy_client._json,
1396
+ InputSwitchConfiguration: import_smithy_client._json,
1386
1397
  InputType: import_smithy_client.expectString,
1387
1398
  ModifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1399
+ OutputHeaderConfiguration: import_smithy_client._json,
1388
1400
  Tags: [, import_smithy_client._json, `tags`]
1389
1401
  });
1390
1402
  Object.assign(contents, doc);
@@ -124,6 +124,8 @@ export const ValidationExceptionType = {
124
124
  NUM_MANIFESTS_HIGH: "NUM_MANIFESTS_HIGH",
125
125
  NUM_MANIFESTS_LOW: "NUM_MANIFESTS_LOW",
126
126
  ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION",
127
+ ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING",
128
+ ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION",
127
129
  PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES: "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES",
128
130
  ROLE_ARN_INVALID_FORMAT: "ROLE_ARN_INVALID_FORMAT",
129
131
  ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE",
@@ -30,7 +30,9 @@ export const se_CreateChannelCommand = async (input, context) => {
30
30
  body = JSON.stringify(take(input, {
31
31
  ChannelName: [],
32
32
  Description: [],
33
+ InputSwitchConfiguration: (_) => _json(_),
33
34
  InputType: [],
35
+ OutputHeaderConfiguration: (_) => _json(_),
34
36
  tags: [, (_) => _json(_), `Tags`],
35
37
  }));
36
38
  b.m("POST").h(headers).b(body);
@@ -346,6 +348,8 @@ export const se_UpdateChannelCommand = async (input, context) => {
346
348
  let body;
347
349
  body = JSON.stringify(take(input, {
348
350
  Description: [],
351
+ InputSwitchConfiguration: (_) => _json(_),
352
+ OutputHeaderConfiguration: (_) => _json(_),
349
353
  }));
350
354
  b.m("PUT").h(headers).b(body);
351
355
  return b.build();
@@ -415,8 +419,10 @@ export const de_CreateChannelCommand = async (output, context) => {
415
419
  Description: __expectString,
416
420
  ETag: __expectString,
417
421
  IngestEndpoints: _json,
422
+ InputSwitchConfiguration: _json,
418
423
  InputType: __expectString,
419
424
  ModifiedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
425
+ OutputHeaderConfiguration: _json,
420
426
  Tags: _json,
421
427
  });
422
428
  Object.assign(contents, doc);
@@ -566,8 +572,10 @@ export const de_GetChannelCommand = async (output, context) => {
566
572
  Description: __expectString,
567
573
  ETag: __expectString,
568
574
  IngestEndpoints: _json,
575
+ InputSwitchConfiguration: _json,
569
576
  InputType: __expectString,
570
577
  ModifiedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
578
+ OutputHeaderConfiguration: _json,
571
579
  Tags: _json,
572
580
  });
573
581
  Object.assign(contents, doc);
@@ -814,8 +822,10 @@ export const de_UpdateChannelCommand = async (output, context) => {
814
822
  Description: __expectString,
815
823
  ETag: __expectString,
816
824
  IngestEndpoints: _json,
825
+ InputSwitchConfiguration: _json,
817
826
  InputType: __expectString,
818
827
  ModifiedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
828
+ OutputHeaderConfiguration: _json,
819
829
  Tags: [, _json, `tags`],
820
830
  });
821
831
  Object.assign(contents, doc);
@@ -40,6 +40,12 @@ declare const CreateChannelCommand_base: {
40
40
  * ClientToken: "STRING_VALUE",
41
41
  * InputType: "HLS" || "CMAF",
42
42
  * Description: "STRING_VALUE",
43
+ * InputSwitchConfiguration: { // InputSwitchConfiguration
44
+ * MQCSInputSwitching: true || false,
45
+ * },
46
+ * OutputHeaderConfiguration: { // OutputHeaderConfiguration
47
+ * PublishMQCS: true || false,
48
+ * },
43
49
  * Tags: { // TagMap
44
50
  * "<keys>": "STRING_VALUE",
45
51
  * },
@@ -64,6 +70,12 @@ declare const CreateChannelCommand_base: {
64
70
  * // Tags: { // TagMap
65
71
  * // "<keys>": "STRING_VALUE",
66
72
  * // },
73
+ * // InputSwitchConfiguration: { // InputSwitchConfiguration
74
+ * // MQCSInputSwitching: true || false,
75
+ * // },
76
+ * // OutputHeaderConfiguration: { // OutputHeaderConfiguration
77
+ * // PublishMQCS: true || false,
78
+ * // },
67
79
  * // };
68
80
  *
69
81
  * ```
@@ -58,6 +58,12 @@ declare const GetChannelCommand_base: {
58
58
  * // Tags: { // TagMap
59
59
  * // "<keys>": "STRING_VALUE",
60
60
  * // },
61
+ * // InputSwitchConfiguration: { // InputSwitchConfiguration
62
+ * // MQCSInputSwitching: true || false,
63
+ * // },
64
+ * // OutputHeaderConfiguration: { // OutputHeaderConfiguration
65
+ * // PublishMQCS: true || false,
66
+ * // },
61
67
  * // };
62
68
  *
63
69
  * ```
@@ -40,6 +40,12 @@ declare const UpdateChannelCommand_base: {
40
40
  * ChannelName: "STRING_VALUE", // required
41
41
  * ETag: "STRING_VALUE",
42
42
  * Description: "STRING_VALUE",
43
+ * InputSwitchConfiguration: { // InputSwitchConfiguration
44
+ * MQCSInputSwitching: true || false,
45
+ * },
46
+ * OutputHeaderConfiguration: { // OutputHeaderConfiguration
47
+ * PublishMQCS: true || false,
48
+ * },
43
49
  * };
44
50
  * const command = new UpdateChannelCommand(input);
45
51
  * const response = await client.send(command);
@@ -61,6 +67,12 @@ declare const UpdateChannelCommand_base: {
61
67
  * // Tags: { // TagMap
62
68
  * // "<keys>": "STRING_VALUE",
63
69
  * // },
70
+ * // InputSwitchConfiguration: { // InputSwitchConfiguration
71
+ * // MQCSInputSwitching: true || false,
72
+ * // },
73
+ * // OutputHeaderConfiguration: { // OutputHeaderConfiguration
74
+ * // PublishMQCS: true || false,
75
+ * // },
64
76
  * // };
65
77
  *
66
78
  * ```
@@ -204,6 +204,8 @@ export declare const ValidationExceptionType: {
204
204
  readonly NUM_MANIFESTS_HIGH: "NUM_MANIFESTS_HIGH";
205
205
  readonly NUM_MANIFESTS_LOW: "NUM_MANIFESTS_LOW";
206
206
  readonly ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION";
207
+ readonly ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING";
208
+ readonly ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION";
207
209
  readonly PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES: "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES";
208
210
  readonly ROLE_ARN_INVALID_FORMAT: "ROLE_ARN_INVALID_FORMAT";
209
211
  readonly ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE";
@@ -357,6 +359,17 @@ export interface PutChannelPolicyRequest {
357
359
  */
358
360
  export interface PutChannelPolicyResponse {
359
361
  }
362
+ /**
363
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.</p>
364
+ * @public
365
+ */
366
+ export interface InputSwitchConfiguration {
367
+ /**
368
+ * <p>When true, AWS Elemental MediaPackage performs input switching based on the MQCS. Default is true. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
369
+ * @public
370
+ */
371
+ MQCSInputSwitching?: boolean | undefined;
372
+ }
360
373
  /**
361
374
  * @public
362
375
  * @enum
@@ -369,6 +382,17 @@ export declare const InputType: {
369
382
  * @public
370
383
  */
371
384
  export type InputType = (typeof InputType)[keyof typeof InputType];
385
+ /**
386
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.</p>
387
+ * @public
388
+ */
389
+ export interface OutputHeaderConfiguration {
390
+ /**
391
+ * <p>When true, AWS Elemental MediaPackage includes the MQCS in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
392
+ * @public
393
+ */
394
+ PublishMQCS?: boolean | undefined;
395
+ }
372
396
  /**
373
397
  * @public
374
398
  */
@@ -409,6 +433,16 @@ export interface CreateChannelRequest {
409
433
  * @public
410
434
  */
411
435
  Description?: string | undefined;
436
+ /**
437
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
438
+ * @public
439
+ */
440
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
441
+ /**
442
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
443
+ * @public
444
+ */
445
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
412
446
  /**
413
447
  * <p>A comma-separated list of tag key:value pairs that you define. For example:</p>
414
448
  * <p>
@@ -502,6 +536,16 @@ export interface CreateChannelResponse {
502
536
  * @public
503
537
  */
504
538
  Tags?: Record<string, string> | undefined;
539
+ /**
540
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
541
+ * @public
542
+ */
543
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
544
+ /**
545
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
546
+ * @public
547
+ */
548
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
505
549
  }
506
550
  /**
507
551
  * <p>The request would cause a service quota to be exceeded.</p>
@@ -616,6 +660,16 @@ export interface GetChannelResponse {
616
660
  * @public
617
661
  */
618
662
  Tags?: Record<string, string> | undefined;
663
+ /**
664
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
665
+ * @public
666
+ */
667
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
668
+ /**
669
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
670
+ * @public
671
+ */
672
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
619
673
  }
620
674
  /**
621
675
  * @public
@@ -1015,8 +1069,7 @@ export interface CreateHlsManifestConfiguration {
1015
1069
  /**
1016
1070
  * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
1017
1071
  * EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
1018
- * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.
1019
- * ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p>
1072
+ * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
1020
1073
  * <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
1021
1074
  * @public
1022
1075
  */
@@ -1060,8 +1113,7 @@ export interface CreateLowLatencyHlsManifestConfiguration {
1060
1113
  /**
1061
1114
  * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
1062
1115
  * EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
1063
- * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.
1064
- * ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p>
1116
+ * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
1065
1117
  * <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
1066
1118
  * @public
1067
1119
  */
@@ -1568,8 +1620,7 @@ export interface GetHlsManifestConfiguration {
1568
1620
  /**
1569
1621
  * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
1570
1622
  * EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
1571
- * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.
1572
- * ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p>
1623
+ * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
1573
1624
  * <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
1574
1625
  * @public
1575
1626
  */
@@ -1618,8 +1669,7 @@ export interface GetLowLatencyHlsManifestConfiguration {
1618
1669
  /**
1619
1670
  * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
1620
1671
  * EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
1621
- * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.
1622
- * ID3Timed metadata messages generate every 5 seconds whenever the content is ingested.</p>
1672
+ * The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
1623
1673
  * <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
1624
1674
  * @public
1625
1675
  */
@@ -2293,6 +2343,16 @@ export interface UpdateChannelRequest {
2293
2343
  * @public
2294
2344
  */
2295
2345
  Description?: string | undefined;
2346
+ /**
2347
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
2348
+ * @public
2349
+ */
2350
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
2351
+ /**
2352
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
2353
+ * @public
2354
+ */
2355
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
2296
2356
  }
2297
2357
  /**
2298
2358
  * @public
@@ -2359,6 +2419,16 @@ export interface UpdateChannelResponse {
2359
2419
  * @public
2360
2420
  */
2361
2421
  Tags?: Record<string, string> | undefined;
2422
+ /**
2423
+ * <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
2424
+ * @public
2425
+ */
2426
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
2427
+ /**
2428
+ * <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
2429
+ * @public
2430
+ */
2431
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
2362
2432
  }
2363
2433
  /**
2364
2434
  * @public
@@ -112,6 +112,8 @@ export declare const ValidationExceptionType: {
112
112
  readonly NUM_MANIFESTS_HIGH: "NUM_MANIFESTS_HIGH";
113
113
  readonly NUM_MANIFESTS_LOW: "NUM_MANIFESTS_LOW";
114
114
  readonly ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION";
115
+ readonly ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING";
116
+ readonly ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION: "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION";
115
117
  readonly PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES: "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES";
116
118
  readonly ROLE_ARN_INVALID_FORMAT: "ROLE_ARN_INVALID_FORMAT";
117
119
  readonly ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE";
@@ -170,17 +172,25 @@ export interface PutChannelPolicyRequest {
170
172
  Policy: string | undefined;
171
173
  }
172
174
  export interface PutChannelPolicyResponse {}
175
+ export interface InputSwitchConfiguration {
176
+ MQCSInputSwitching?: boolean | undefined;
177
+ }
173
178
  export declare const InputType: {
174
179
  readonly CMAF: "CMAF";
175
180
  readonly HLS: "HLS";
176
181
  };
177
182
  export type InputType = (typeof InputType)[keyof typeof InputType];
183
+ export interface OutputHeaderConfiguration {
184
+ PublishMQCS?: boolean | undefined;
185
+ }
178
186
  export interface CreateChannelRequest {
179
187
  ChannelGroupName: string | undefined;
180
188
  ChannelName: string | undefined;
181
189
  ClientToken?: string | undefined;
182
190
  InputType?: InputType | undefined;
183
191
  Description?: string | undefined;
192
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
193
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
184
194
  Tags?: Record<string, string> | undefined;
185
195
  }
186
196
  export interface IngestEndpoint {
@@ -198,6 +208,8 @@ export interface CreateChannelResponse {
198
208
  InputType?: InputType | undefined;
199
209
  ETag?: string | undefined;
200
210
  Tags?: Record<string, string> | undefined;
211
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
212
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
201
213
  }
202
214
  export declare class ServiceQuotaExceededException extends __BaseException {
203
215
  readonly name: "ServiceQuotaExceededException";
@@ -227,6 +239,8 @@ export interface GetChannelResponse {
227
239
  InputType?: InputType | undefined;
228
240
  ETag?: string | undefined;
229
241
  Tags?: Record<string, string> | undefined;
242
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
243
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
230
244
  }
231
245
  export interface ListChannelsRequest {
232
246
  ChannelGroupName: string | undefined;
@@ -629,6 +643,8 @@ export interface UpdateChannelRequest {
629
643
  ChannelName: string | undefined;
630
644
  ETag?: string | undefined;
631
645
  Description?: string | undefined;
646
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
647
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
632
648
  }
633
649
  export interface UpdateChannelResponse {
634
650
  Arn: string | undefined;
@@ -641,6 +657,8 @@ export interface UpdateChannelResponse {
641
657
  InputType?: InputType | undefined;
642
658
  ETag?: string | undefined;
643
659
  Tags?: Record<string, string> | undefined;
660
+ InputSwitchConfiguration?: InputSwitchConfiguration | undefined;
661
+ OutputHeaderConfiguration?: OutputHeaderConfiguration | undefined;
644
662
  }
645
663
  export interface CreateChannelGroupRequest {
646
664
  ChannelGroupName: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackagev2",
3
3
  "description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native",
4
- "version": "3.696.0",
4
+ "version": "3.699.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-mediapackagev2",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.696.0",
24
- "@aws-sdk/client-sts": "3.696.0",
23
+ "@aws-sdk/client-sso-oidc": "3.699.0",
24
+ "@aws-sdk/client-sts": "3.699.0",
25
25
  "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.699.0",
27
27
  "@aws-sdk/middleware-host-header": "3.696.0",
28
28
  "@aws-sdk/middleware-logger": "3.696.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.696.0",