@aws-sdk/client-mediatailor 3.734.0 → 3.739.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 +10 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +54 -11
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -76,6 +76,7 @@ __export(src_exports, {
|
|
|
76
76
|
ScheduleEntryType: () => ScheduleEntryType,
|
|
77
77
|
StartChannelCommand: () => StartChannelCommand,
|
|
78
78
|
StopChannelCommand: () => StopChannelCommand,
|
|
79
|
+
StreamingMediaFileConditioning: () => StreamingMediaFileConditioning,
|
|
79
80
|
TagResourceCommand: () => TagResourceCommand,
|
|
80
81
|
Tier: () => Tier,
|
|
81
82
|
Type: () => Type,
|
|
@@ -291,6 +292,10 @@ var Type = {
|
|
|
291
292
|
DASH: "DASH",
|
|
292
293
|
HLS: "HLS"
|
|
293
294
|
};
|
|
295
|
+
var StreamingMediaFileConditioning = {
|
|
296
|
+
NONE: "NONE",
|
|
297
|
+
TRANSCODE: "TRANSCODE"
|
|
298
|
+
};
|
|
294
299
|
var FillPolicy = {
|
|
295
300
|
FULL_AVAIL_ONLY: "FULL_AVAIL_ONLY",
|
|
296
301
|
PARTIAL_AVAIL: "PARTIAL_AVAIL"
|
|
@@ -801,6 +806,7 @@ var se_PutPlaybackConfigurationCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
801
806
|
let body;
|
|
802
807
|
body = JSON.stringify(
|
|
803
808
|
(0, import_smithy_client.take)(input, {
|
|
809
|
+
AdConditioningConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
804
810
|
AdDecisionServerUrl: [],
|
|
805
811
|
AvailSuppression: (_) => (0, import_smithy_client._json)(_),
|
|
806
812
|
Bumper: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -1351,6 +1357,7 @@ var de_GetPlaybackConfigurationCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
1351
1357
|
});
|
|
1352
1358
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1353
1359
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1360
|
+
AdConditioningConfiguration: import_smithy_client._json,
|
|
1354
1361
|
AdDecisionServerUrl: import_smithy_client.expectString,
|
|
1355
1362
|
AvailSuppression: import_smithy_client._json,
|
|
1356
1363
|
Bumper: import_smithy_client._json,
|
|
@@ -1532,6 +1539,7 @@ var de_PutPlaybackConfigurationCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
1532
1539
|
});
|
|
1533
1540
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1534
1541
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1542
|
+
AdConditioningConfiguration: import_smithy_client._json,
|
|
1535
1543
|
AdDecisionServerUrl: import_smithy_client.expectString,
|
|
1536
1544
|
AvailSuppression: import_smithy_client._json,
|
|
1537
1545
|
Bumper: import_smithy_client._json,
|
|
@@ -1848,6 +1856,7 @@ var de_LiveSource = /* @__PURE__ */ __name((output, context) => {
|
|
|
1848
1856
|
}, "de_LiveSource");
|
|
1849
1857
|
var de_PlaybackConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
1850
1858
|
return (0, import_smithy_client.take)(output, {
|
|
1859
|
+
AdConditioningConfiguration: import_smithy_client._json,
|
|
1851
1860
|
AdDecisionServerUrl: import_smithy_client.expectString,
|
|
1852
1861
|
AvailSuppression: import_smithy_client._json,
|
|
1853
1862
|
Bumper: import_smithy_client._json,
|
|
@@ -2768,6 +2777,7 @@ var paginateListVodSources = (0, import_core.createPaginator)(MediaTailorClient,
|
|
|
2768
2777
|
LogType,
|
|
2769
2778
|
AdMarkupType,
|
|
2770
2779
|
Type,
|
|
2780
|
+
StreamingMediaFileConditioning,
|
|
2771
2781
|
FillPolicy,
|
|
2772
2782
|
Mode,
|
|
2773
2783
|
OriginManifestType,
|
|
@@ -22,6 +22,10 @@ export const Type = {
|
|
|
22
22
|
DASH: "DASH",
|
|
23
23
|
HLS: "HLS",
|
|
24
24
|
};
|
|
25
|
+
export const StreamingMediaFileConditioning = {
|
|
26
|
+
NONE: "NONE",
|
|
27
|
+
TRANSCODE: "TRANSCODE",
|
|
28
|
+
};
|
|
25
29
|
export const FillPolicy = {
|
|
26
30
|
FULL_AVAIL_ONLY: "FULL_AVAIL_ONLY",
|
|
27
31
|
PARTIAL_AVAIL: "PARTIAL_AVAIL",
|
|
@@ -427,6 +427,7 @@ export const se_PutPlaybackConfigurationCommand = async (input, context) => {
|
|
|
427
427
|
b.bp("/playbackConfiguration");
|
|
428
428
|
let body;
|
|
429
429
|
body = JSON.stringify(take(input, {
|
|
430
|
+
AdConditioningConfiguration: (_) => _json(_),
|
|
430
431
|
AdDecisionServerUrl: [],
|
|
431
432
|
AvailSuppression: (_) => _json(_),
|
|
432
433
|
Bumper: (_) => _json(_),
|
|
@@ -964,6 +965,7 @@ export const de_GetPlaybackConfigurationCommand = async (output, context) => {
|
|
|
964
965
|
});
|
|
965
966
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
966
967
|
const doc = take(data, {
|
|
968
|
+
AdConditioningConfiguration: _json,
|
|
967
969
|
AdDecisionServerUrl: __expectString,
|
|
968
970
|
AvailSuppression: _json,
|
|
969
971
|
Bumper: _json,
|
|
@@ -1145,6 +1147,7 @@ export const de_PutPlaybackConfigurationCommand = async (output, context) => {
|
|
|
1145
1147
|
});
|
|
1146
1148
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1147
1149
|
const doc = take(data, {
|
|
1150
|
+
AdConditioningConfiguration: _json,
|
|
1148
1151
|
AdDecisionServerUrl: __expectString,
|
|
1149
1152
|
AvailSuppression: _json,
|
|
1150
1153
|
Bumper: _json,
|
|
@@ -1479,6 +1482,7 @@ const de_LiveSource = (output, context) => {
|
|
|
1479
1482
|
};
|
|
1480
1483
|
const de_PlaybackConfiguration = (output, context) => {
|
|
1481
1484
|
return take(output, {
|
|
1485
|
+
AdConditioningConfiguration: _json,
|
|
1482
1486
|
AdDecisionServerUrl: __expectString,
|
|
1483
1487
|
AvailSuppression: _json,
|
|
1484
1488
|
Bumper: _json,
|
|
@@ -27,7 +27,7 @@ declare const ConfigureLogsForPlaybackConfigurationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>Defines where AWS Elemental MediaTailor sends logs for the playback configuration.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -91,6 +91,9 @@ declare const GetPlaybackConfigurationCommand_base: {
|
|
|
91
91
|
* // },
|
|
92
92
|
* // TranscodeProfileName: "STRING_VALUE",
|
|
93
93
|
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
94
|
+
* // AdConditioningConfiguration: { // AdConditioningConfiguration
|
|
95
|
+
* // StreamingMediaFileConditioning: "TRANSCODE" || "NONE", // required
|
|
96
|
+
* // },
|
|
94
97
|
* // };
|
|
95
98
|
*
|
|
96
99
|
* ```
|
|
@@ -94,6 +94,9 @@ declare const ListPlaybackConfigurationsCommand_base: {
|
|
|
94
94
|
* // },
|
|
95
95
|
* // TranscodeProfileName: "STRING_VALUE",
|
|
96
96
|
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
97
|
+
* // AdConditioningConfiguration: { // AdConditioningConfiguration
|
|
98
|
+
* // StreamingMediaFileConditioning: "TRANSCODE" || "NONE", // required
|
|
99
|
+
* // },
|
|
97
100
|
* // },
|
|
98
101
|
* // ],
|
|
99
102
|
* // NextToken: "STRING_VALUE",
|
|
@@ -76,6 +76,9 @@ declare const PutPlaybackConfigurationCommand_base: {
|
|
|
76
76
|
* },
|
|
77
77
|
* TranscodeProfileName: "STRING_VALUE",
|
|
78
78
|
* VideoContentSourceUrl: "STRING_VALUE",
|
|
79
|
+
* AdConditioningConfiguration: { // AdConditioningConfiguration
|
|
80
|
+
* StreamingMediaFileConditioning: "TRANSCODE" || "NONE", // required
|
|
81
|
+
* },
|
|
79
82
|
* };
|
|
80
83
|
* const command = new PutPlaybackConfigurationCommand(input);
|
|
81
84
|
* const response = await client.send(command);
|
|
@@ -131,6 +134,9 @@ declare const PutPlaybackConfigurationCommand_base: {
|
|
|
131
134
|
* // },
|
|
132
135
|
* // TranscodeProfileName: "STRING_VALUE",
|
|
133
136
|
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
137
|
+
* // AdConditioningConfiguration: { // AdConditioningConfiguration
|
|
138
|
+
* // StreamingMediaFileConditioning: "TRANSCODE" || "NONE", // required
|
|
139
|
+
* // },
|
|
134
140
|
* // };
|
|
135
141
|
*
|
|
136
142
|
* ```
|
|
@@ -575,6 +575,29 @@ export interface LiveSource {
|
|
|
575
575
|
*/
|
|
576
576
|
Tags?: Record<string, string> | undefined;
|
|
577
577
|
}
|
|
578
|
+
/**
|
|
579
|
+
* @public
|
|
580
|
+
* @enum
|
|
581
|
+
*/
|
|
582
|
+
export declare const StreamingMediaFileConditioning: {
|
|
583
|
+
readonly NONE: "NONE";
|
|
584
|
+
readonly TRANSCODE: "TRANSCODE";
|
|
585
|
+
};
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
export type StreamingMediaFileConditioning = (typeof StreamingMediaFileConditioning)[keyof typeof StreamingMediaFileConditioning];
|
|
590
|
+
/**
|
|
591
|
+
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
export interface AdConditioningConfiguration {
|
|
595
|
+
/**
|
|
596
|
+
* <p>For ads that have media files with streaming delivery, indicates what transcoding action MediaTailor it first receives these ads from the ADS. <code>TRANSCODE</code> indicates that MediaTailor must transcode the ads. <code>NONE</code> indicates that you have already transcoded the ads outside of MediaTailor and don't need them transcoded as part of the ad insertion workflow. For more information about ad conditioning see <a href="https://docs.aws.amazon.com/precondition-ads.html">https://docs.aws.amazon.com/precondition-ads.html</a>.</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
StreamingMediaFileConditioning: StreamingMediaFileConditioning | undefined;
|
|
600
|
+
}
|
|
578
601
|
/**
|
|
579
602
|
* @public
|
|
580
603
|
* @enum
|
|
@@ -726,12 +749,12 @@ export interface LivePreRollConfiguration {
|
|
|
726
749
|
MaxDurationSeconds?: number | undefined;
|
|
727
750
|
}
|
|
728
751
|
/**
|
|
729
|
-
* <p>
|
|
752
|
+
* <p>Defines where AWS Elemental MediaTailor sends logs for the playback configuration.</p>
|
|
730
753
|
* @public
|
|
731
754
|
*/
|
|
732
755
|
export interface LogConfiguration {
|
|
733
756
|
/**
|
|
734
|
-
* <p>The percentage of session logs that MediaTailor sends to your
|
|
757
|
+
* <p>The percentage of session logs that MediaTailor sends to your configured log destination. For example, if your playback configuration has 1000 sessions and <code>percentEnabled</code> is set to <code>60</code>, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html">debug log mode</a>.</p>
|
|
735
758
|
* <p>Valid values: <code>0</code> - <code>100</code>
|
|
736
759
|
* </p>
|
|
737
760
|
* @public
|
|
@@ -788,7 +811,7 @@ export interface PlaybackConfiguration {
|
|
|
788
811
|
*/
|
|
789
812
|
CdnConfiguration?: CdnConfiguration | undefined;
|
|
790
813
|
/**
|
|
791
|
-
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
|
814
|
+
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html">Domain Variables</a>.</p>
|
|
792
815
|
* @public
|
|
793
816
|
*/
|
|
794
817
|
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
@@ -813,7 +836,7 @@ export interface PlaybackConfiguration {
|
|
|
813
836
|
*/
|
|
814
837
|
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
815
838
|
/**
|
|
816
|
-
* <p>
|
|
839
|
+
* <p>Defines where AWS Elemental MediaTailor sends logs for the playback configuration.</p>
|
|
817
840
|
* @public
|
|
818
841
|
*/
|
|
819
842
|
LogConfiguration?: LogConfiguration | undefined;
|
|
@@ -867,6 +890,11 @@ export interface PlaybackConfiguration {
|
|
|
867
890
|
* @public
|
|
868
891
|
*/
|
|
869
892
|
VideoContentSourceUrl?: string | undefined;
|
|
893
|
+
/**
|
|
894
|
+
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
|
|
895
|
+
* @public
|
|
896
|
+
*/
|
|
897
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
870
898
|
}
|
|
871
899
|
/**
|
|
872
900
|
* <p>A complex type that contains settings that determine how and when that MediaTailor places prefetched ads into upcoming ad breaks.</p>
|
|
@@ -884,7 +912,7 @@ export interface PrefetchConsumption {
|
|
|
884
912
|
*/
|
|
885
913
|
EndTime: Date | undefined;
|
|
886
914
|
/**
|
|
887
|
-
* <p>The time when prefetched ads are considered for use in an ad break. If you don't specify <code>StartTime</code>, the prefetched ads are available after MediaTailor
|
|
915
|
+
* <p>The time when prefetched ads are considered for use in an ad break. If you don't specify <code>StartTime</code>, the prefetched ads are available after MediaTailor retrieves them from the ad decision server.</p>
|
|
888
916
|
* @public
|
|
889
917
|
*/
|
|
890
918
|
StartTime?: Date | undefined;
|
|
@@ -2272,7 +2300,7 @@ export interface UpdateChannelResponse {
|
|
|
2272
2300
|
*/
|
|
2273
2301
|
export interface ConfigureLogsForPlaybackConfigurationRequest {
|
|
2274
2302
|
/**
|
|
2275
|
-
* <p>The percentage of session logs that MediaTailor sends to your
|
|
2303
|
+
* <p>The percentage of session logs that MediaTailor sends to your CloudWatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to <code>60</code>, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html">debug log mode</a>.</p>
|
|
2276
2304
|
* <p>Valid values: <code>0</code> - <code>100</code>
|
|
2277
2305
|
* </p>
|
|
2278
2306
|
* @public
|
|
@@ -2895,7 +2923,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
2895
2923
|
*/
|
|
2896
2924
|
CdnConfiguration?: CdnConfiguration | undefined;
|
|
2897
2925
|
/**
|
|
2898
|
-
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
|
2926
|
+
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html">Domain Variables</a>.</p>
|
|
2899
2927
|
* @public
|
|
2900
2928
|
*/
|
|
2901
2929
|
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
@@ -2920,7 +2948,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
2920
2948
|
*/
|
|
2921
2949
|
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
2922
2950
|
/**
|
|
2923
|
-
* <p>The
|
|
2951
|
+
* <p>The configuration that defines where AWS Elemental MediaTailor sends logs for the playback configuration.</p>
|
|
2924
2952
|
* @public
|
|
2925
2953
|
*/
|
|
2926
2954
|
LogConfiguration?: LogConfiguration | undefined;
|
|
@@ -2974,6 +3002,11 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
2974
3002
|
* @public
|
|
2975
3003
|
*/
|
|
2976
3004
|
VideoContentSourceUrl?: string | undefined;
|
|
3005
|
+
/**
|
|
3006
|
+
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns. </p>
|
|
3007
|
+
* @public
|
|
3008
|
+
*/
|
|
3009
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
2977
3010
|
}
|
|
2978
3011
|
/**
|
|
2979
3012
|
* @public
|
|
@@ -3338,7 +3371,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
3338
3371
|
*/
|
|
3339
3372
|
CdnConfiguration?: CdnConfiguration | undefined;
|
|
3340
3373
|
/**
|
|
3341
|
-
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
|
3374
|
+
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html">Domain Variables</a>.</p>
|
|
3342
3375
|
* @public
|
|
3343
3376
|
*/
|
|
3344
3377
|
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
@@ -3392,6 +3425,11 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
3392
3425
|
* @public
|
|
3393
3426
|
*/
|
|
3394
3427
|
VideoContentSourceUrl?: string | undefined;
|
|
3428
|
+
/**
|
|
3429
|
+
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
|
|
3430
|
+
* @public
|
|
3431
|
+
*/
|
|
3432
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
3395
3433
|
}
|
|
3396
3434
|
/**
|
|
3397
3435
|
* @public
|
|
@@ -3418,7 +3456,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
3418
3456
|
*/
|
|
3419
3457
|
CdnConfiguration?: CdnConfiguration | undefined;
|
|
3420
3458
|
/**
|
|
3421
|
-
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
|
3459
|
+
* <p>The player parameters and aliases used as dynamic variables during session initialization. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html">Domain Variables</a>.</p>
|
|
3422
3460
|
* @public
|
|
3423
3461
|
*/
|
|
3424
3462
|
ConfigurationAliases?: Record<string, Record<string, string>> | undefined;
|
|
@@ -3443,7 +3481,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
3443
3481
|
*/
|
|
3444
3482
|
LivePreRollConfiguration?: LivePreRollConfiguration | undefined;
|
|
3445
3483
|
/**
|
|
3446
|
-
* <p>The
|
|
3484
|
+
* <p>The configuration that defines where AWS Elemental MediaTailor sends logs for the playback configuration.</p>
|
|
3447
3485
|
* @public
|
|
3448
3486
|
*/
|
|
3449
3487
|
LogConfiguration?: LogConfiguration | undefined;
|
|
@@ -3497,6 +3535,11 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
3497
3535
|
* @public
|
|
3498
3536
|
*/
|
|
3499
3537
|
VideoContentSourceUrl?: string | undefined;
|
|
3538
|
+
/**
|
|
3539
|
+
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
|
|
3540
|
+
* @public
|
|
3541
|
+
*/
|
|
3542
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
3500
3543
|
}
|
|
3501
3544
|
/**
|
|
3502
3545
|
* @public
|
|
@@ -141,6 +141,15 @@ export interface LiveSource {
|
|
|
141
141
|
SourceLocationName: string | undefined;
|
|
142
142
|
Tags?: Record<string, string> | undefined;
|
|
143
143
|
}
|
|
144
|
+
export declare const StreamingMediaFileConditioning: {
|
|
145
|
+
readonly NONE: "NONE";
|
|
146
|
+
readonly TRANSCODE: "TRANSCODE";
|
|
147
|
+
};
|
|
148
|
+
export type StreamingMediaFileConditioning =
|
|
149
|
+
(typeof StreamingMediaFileConditioning)[keyof typeof StreamingMediaFileConditioning];
|
|
150
|
+
export interface AdConditioningConfiguration {
|
|
151
|
+
StreamingMediaFileConditioning: StreamingMediaFileConditioning | undefined;
|
|
152
|
+
}
|
|
144
153
|
export declare const FillPolicy: {
|
|
145
154
|
readonly FULL_AVAIL_ONLY: "FULL_AVAIL_ONLY";
|
|
146
155
|
readonly PARTIAL_AVAIL: "PARTIAL_AVAIL";
|
|
@@ -218,6 +227,7 @@ export interface PlaybackConfiguration {
|
|
|
218
227
|
Tags?: Record<string, string> | undefined;
|
|
219
228
|
TranscodeProfileName?: string | undefined;
|
|
220
229
|
VideoContentSourceUrl?: string | undefined;
|
|
230
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
221
231
|
}
|
|
222
232
|
export interface PrefetchConsumption {
|
|
223
233
|
AvailMatchingCriteria?: AvailMatchingCriteria[] | undefined;
|
|
@@ -727,6 +737,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
727
737
|
Tags?: Record<string, string> | undefined;
|
|
728
738
|
TranscodeProfileName?: string | undefined;
|
|
729
739
|
VideoContentSourceUrl?: string | undefined;
|
|
740
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
730
741
|
}
|
|
731
742
|
export interface GetPrefetchScheduleRequest {
|
|
732
743
|
Name: string | undefined;
|
|
@@ -829,6 +840,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
829
840
|
Tags?: Record<string, string> | undefined;
|
|
830
841
|
TranscodeProfileName?: string | undefined;
|
|
831
842
|
VideoContentSourceUrl?: string | undefined;
|
|
843
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
832
844
|
}
|
|
833
845
|
export interface PutPlaybackConfigurationResponse {
|
|
834
846
|
AdDecisionServerUrl?: string | undefined;
|
|
@@ -851,6 +863,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
851
863
|
Tags?: Record<string, string> | undefined;
|
|
852
864
|
TranscodeProfileName?: string | undefined;
|
|
853
865
|
VideoContentSourceUrl?: string | undefined;
|
|
866
|
+
AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
|
|
854
867
|
}
|
|
855
868
|
export interface UpdateSourceLocationRequest {
|
|
856
869
|
AccessConfiguration?: AccessConfiguration | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediatailor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.739.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-mediatailor",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.734.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.738.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|