@aws-sdk/client-mediatailor 3.99.0 → 3.109.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/CHANGELOG.md +27 -0
- package/dist-cjs/MediaTailorClient.js +2 -0
- package/dist-es/MediaTailorClient.js +2 -0
- package/dist-types/models/models_0.d.ts +31 -101
- package/dist-types/ts3.4/models/models_0.d.ts +31 -101
- package/package.json +29 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-mediatailor
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-mediatailor
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-mediatailor
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class MediaTailorClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var MediaTailorClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -241,9 +241,7 @@ export interface Channel {
|
|
|
241
241
|
/**
|
|
242
242
|
* <p>The tags to assign to the channel.</p>
|
|
243
243
|
*/
|
|
244
|
-
Tags?:
|
|
245
|
-
[key: string]: string;
|
|
246
|
-
};
|
|
244
|
+
Tags?: Record<string, string>;
|
|
247
245
|
/**
|
|
248
246
|
* <p>The tier for this channel. STANDARD tier channels can contain live programs.</p>
|
|
249
247
|
*/
|
|
@@ -313,9 +311,7 @@ export interface LiveSource {
|
|
|
313
311
|
/**
|
|
314
312
|
* <p>The tags assigned to the live source.</p>
|
|
315
313
|
*/
|
|
316
|
-
Tags?:
|
|
317
|
-
[key: string]: string;
|
|
318
|
-
};
|
|
314
|
+
Tags?: Record<string, string>;
|
|
319
315
|
}
|
|
320
316
|
export declare namespace LiveSource {
|
|
321
317
|
/**
|
|
@@ -513,11 +509,7 @@ export interface PlaybackConfiguration {
|
|
|
513
509
|
/**
|
|
514
510
|
* <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-domain.html">Domain Variables</a>.</p>
|
|
515
511
|
*/
|
|
516
|
-
ConfigurationAliases?:
|
|
517
|
-
[key: string]: {
|
|
518
|
-
[key: string]: string;
|
|
519
|
-
};
|
|
520
|
-
};
|
|
512
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
521
513
|
/**
|
|
522
514
|
* <p>The configuration for a DASH source.</p>
|
|
523
515
|
*/
|
|
@@ -565,9 +557,7 @@ export interface PlaybackConfiguration {
|
|
|
565
557
|
/**
|
|
566
558
|
* <p>The tags to assign to the playback configuration.</p>
|
|
567
559
|
*/
|
|
568
|
-
Tags?:
|
|
569
|
-
[key: string]: string;
|
|
570
|
-
};
|
|
560
|
+
Tags?: Record<string, string>;
|
|
571
561
|
/**
|
|
572
562
|
* <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
|
|
573
563
|
*/
|
|
@@ -613,9 +603,7 @@ export interface PrefetchRetrieval {
|
|
|
613
603
|
/**
|
|
614
604
|
* <p>The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).</p> <p>You intially configure <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/variables.html">dynamic variables</a> for the ADS URL when you set up your playback configuration. When you specify DynamicVariables for prefetch retrieval, MediaTailor includes the dynamic variables in the request to the ADS.</p>
|
|
615
605
|
*/
|
|
616
|
-
DynamicVariables?:
|
|
617
|
-
[key: string]: string;
|
|
618
|
-
};
|
|
606
|
+
DynamicVariables?: Record<string, string>;
|
|
619
607
|
/**
|
|
620
608
|
* <p>The time when prefetch retrieval ends for the ad break. Prefetching will be attempted for manifest requests that occur at or before this time.</p>
|
|
621
609
|
*/
|
|
@@ -882,9 +870,7 @@ export interface SourceLocation {
|
|
|
882
870
|
/**
|
|
883
871
|
* <p>The tags assigned to the source location.</p>
|
|
884
872
|
*/
|
|
885
|
-
Tags?:
|
|
886
|
-
[key: string]: string;
|
|
887
|
-
};
|
|
873
|
+
Tags?: Record<string, string>;
|
|
888
874
|
}
|
|
889
875
|
export declare namespace SourceLocation {
|
|
890
876
|
/**
|
|
@@ -919,9 +905,7 @@ export interface VodSource {
|
|
|
919
905
|
/**
|
|
920
906
|
* <p>The tags assigned to the VOD source.</p>
|
|
921
907
|
*/
|
|
922
|
-
Tags?:
|
|
923
|
-
[key: string]: string;
|
|
924
|
-
};
|
|
908
|
+
Tags?: Record<string, string>;
|
|
925
909
|
/**
|
|
926
910
|
* <p>The name of the VOD source.</p>
|
|
927
911
|
*/
|
|
@@ -1039,9 +1023,7 @@ export interface CreateChannelRequest {
|
|
|
1039
1023
|
/**
|
|
1040
1024
|
* <p>The tags to assign to the channel.</p>
|
|
1041
1025
|
*/
|
|
1042
|
-
Tags?:
|
|
1043
|
-
[key: string]: string;
|
|
1044
|
-
};
|
|
1026
|
+
Tags?: Record<string, string>;
|
|
1045
1027
|
/**
|
|
1046
1028
|
* <p>The tier of the channel.</p>
|
|
1047
1029
|
*/
|
|
@@ -1089,9 +1071,7 @@ export interface CreateChannelResponse {
|
|
|
1089
1071
|
/**
|
|
1090
1072
|
* <p>The tags assigned to the channel.</p>
|
|
1091
1073
|
*/
|
|
1092
|
-
Tags?:
|
|
1093
|
-
[key: string]: string;
|
|
1094
|
-
};
|
|
1074
|
+
Tags?: Record<string, string>;
|
|
1095
1075
|
/**
|
|
1096
1076
|
* <p>The channel's tier.</p>
|
|
1097
1077
|
*/
|
|
@@ -1119,9 +1099,7 @@ export interface CreateLiveSourceRequest {
|
|
|
1119
1099
|
/**
|
|
1120
1100
|
* <p>The tags to assign to the live source.</p>
|
|
1121
1101
|
*/
|
|
1122
|
-
Tags?:
|
|
1123
|
-
[key: string]: string;
|
|
1124
|
-
};
|
|
1102
|
+
Tags?: Record<string, string>;
|
|
1125
1103
|
}
|
|
1126
1104
|
export declare namespace CreateLiveSourceRequest {
|
|
1127
1105
|
/**
|
|
@@ -1157,9 +1135,7 @@ export interface CreateLiveSourceResponse {
|
|
|
1157
1135
|
/**
|
|
1158
1136
|
* <p>The tags assigned to the live source.</p>
|
|
1159
1137
|
*/
|
|
1160
|
-
Tags?:
|
|
1161
|
-
[key: string]: string;
|
|
1162
|
-
};
|
|
1138
|
+
Tags?: Record<string, string>;
|
|
1163
1139
|
}
|
|
1164
1140
|
export declare namespace CreateLiveSourceResponse {
|
|
1165
1141
|
/**
|
|
@@ -1381,9 +1357,7 @@ export interface CreateSourceLocationRequest {
|
|
|
1381
1357
|
/**
|
|
1382
1358
|
* <p>The tags to assign to the source location.</p>
|
|
1383
1359
|
*/
|
|
1384
|
-
Tags?:
|
|
1385
|
-
[key: string]: string;
|
|
1386
|
-
};
|
|
1360
|
+
Tags?: Record<string, string>;
|
|
1387
1361
|
}
|
|
1388
1362
|
export declare namespace CreateSourceLocationRequest {
|
|
1389
1363
|
/**
|
|
@@ -1427,9 +1401,7 @@ export interface CreateSourceLocationResponse {
|
|
|
1427
1401
|
/**
|
|
1428
1402
|
* <p>The tags assigned to the source location.</p>
|
|
1429
1403
|
*/
|
|
1430
|
-
Tags?:
|
|
1431
|
-
[key: string]: string;
|
|
1432
|
-
};
|
|
1404
|
+
Tags?: Record<string, string>;
|
|
1433
1405
|
}
|
|
1434
1406
|
export declare namespace CreateSourceLocationResponse {
|
|
1435
1407
|
/**
|
|
@@ -1449,9 +1421,7 @@ export interface CreateVodSourceRequest {
|
|
|
1449
1421
|
/**
|
|
1450
1422
|
* <p>The tags to assign to the VOD source.</p>
|
|
1451
1423
|
*/
|
|
1452
|
-
Tags?:
|
|
1453
|
-
[key: string]: string;
|
|
1454
|
-
};
|
|
1424
|
+
Tags?: Record<string, string>;
|
|
1455
1425
|
/**
|
|
1456
1426
|
* <p>The identifier for the VOD source you are working on.</p>
|
|
1457
1427
|
*/
|
|
@@ -1487,9 +1457,7 @@ export interface CreateVodSourceResponse {
|
|
|
1487
1457
|
/**
|
|
1488
1458
|
* <p>The tags assigned to the VOD source.</p>
|
|
1489
1459
|
*/
|
|
1490
|
-
Tags?:
|
|
1491
|
-
[key: string]: string;
|
|
1492
|
-
};
|
|
1460
|
+
Tags?: Record<string, string>;
|
|
1493
1461
|
/**
|
|
1494
1462
|
* <p>The name of the VOD source.</p>
|
|
1495
1463
|
*/
|
|
@@ -1744,9 +1712,7 @@ export interface DescribeChannelResponse {
|
|
|
1744
1712
|
/**
|
|
1745
1713
|
* <p>The tags assigned to the channel.</p>
|
|
1746
1714
|
*/
|
|
1747
|
-
Tags?:
|
|
1748
|
-
[key: string]: string;
|
|
1749
|
-
};
|
|
1715
|
+
Tags?: Record<string, string>;
|
|
1750
1716
|
/**
|
|
1751
1717
|
* <p>The channel's tier.</p>
|
|
1752
1718
|
*/
|
|
@@ -1802,9 +1768,7 @@ export interface DescribeLiveSourceResponse {
|
|
|
1802
1768
|
/**
|
|
1803
1769
|
* <p>The tags assigned to the live source.</p>
|
|
1804
1770
|
*/
|
|
1805
|
-
Tags?:
|
|
1806
|
-
[key: string]: string;
|
|
1807
|
-
};
|
|
1771
|
+
Tags?: Record<string, string>;
|
|
1808
1772
|
}
|
|
1809
1773
|
export declare namespace DescribeLiveSourceResponse {
|
|
1810
1774
|
/**
|
|
@@ -1920,9 +1884,7 @@ export interface DescribeSourceLocationResponse {
|
|
|
1920
1884
|
/**
|
|
1921
1885
|
* <p>The tags assigned to the source location.</p>
|
|
1922
1886
|
*/
|
|
1923
|
-
Tags?:
|
|
1924
|
-
[key: string]: string;
|
|
1925
|
-
};
|
|
1887
|
+
Tags?: Record<string, string>;
|
|
1926
1888
|
}
|
|
1927
1889
|
export declare namespace DescribeSourceLocationResponse {
|
|
1928
1890
|
/**
|
|
@@ -1970,9 +1932,7 @@ export interface DescribeVodSourceResponse {
|
|
|
1970
1932
|
/**
|
|
1971
1933
|
* <p>The tags assigned to the VOD source.</p>
|
|
1972
1934
|
*/
|
|
1973
|
-
Tags?:
|
|
1974
|
-
[key: string]: string;
|
|
1975
|
-
};
|
|
1935
|
+
Tags?: Record<string, string>;
|
|
1976
1936
|
/**
|
|
1977
1937
|
* <p>The name of the VOD source.</p>
|
|
1978
1938
|
*/
|
|
@@ -2080,11 +2040,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
2080
2040
|
/**
|
|
2081
2041
|
* <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-domain.html">Domain Variables</a>.</p>
|
|
2082
2042
|
*/
|
|
2083
|
-
ConfigurationAliases?:
|
|
2084
|
-
[key: string]: {
|
|
2085
|
-
[key: string]: string;
|
|
2086
|
-
};
|
|
2087
|
-
};
|
|
2043
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
2088
2044
|
/**
|
|
2089
2045
|
* <p>The configuration for DASH content.</p>
|
|
2090
2046
|
*/
|
|
@@ -2132,9 +2088,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
2132
2088
|
/**
|
|
2133
2089
|
* <p>The tags assigned to the playback configuration.</p>
|
|
2134
2090
|
*/
|
|
2135
|
-
Tags?:
|
|
2136
|
-
[key: string]: string;
|
|
2137
|
-
};
|
|
2091
|
+
Tags?: Record<string, string>;
|
|
2138
2092
|
/**
|
|
2139
2093
|
* <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
|
|
2140
2094
|
*/
|
|
@@ -2422,9 +2376,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2422
2376
|
/**
|
|
2423
2377
|
* <p>A comma-separated list of tag key:value pairs.</p>
|
|
2424
2378
|
*/
|
|
2425
|
-
Tags?:
|
|
2426
|
-
[key: string]: string;
|
|
2427
|
-
};
|
|
2379
|
+
Tags?: Record<string, string>;
|
|
2428
2380
|
}
|
|
2429
2381
|
export declare namespace ListTagsForResourceResponse {
|
|
2430
2382
|
/**
|
|
@@ -2512,11 +2464,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
2512
2464
|
/**
|
|
2513
2465
|
* <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-domain.html">Domain Variables</a>.</p>
|
|
2514
2466
|
*/
|
|
2515
|
-
ConfigurationAliases?:
|
|
2516
|
-
[key: string]: {
|
|
2517
|
-
[key: string]: string;
|
|
2518
|
-
};
|
|
2519
|
-
};
|
|
2467
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
2520
2468
|
/**
|
|
2521
2469
|
* <p>The configuration for DASH content.</p>
|
|
2522
2470
|
*/
|
|
@@ -2544,9 +2492,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
2544
2492
|
/**
|
|
2545
2493
|
* <p>The tags to assign to the playback configuration.</p>
|
|
2546
2494
|
*/
|
|
2547
|
-
Tags?:
|
|
2548
|
-
[key: string]: string;
|
|
2549
|
-
};
|
|
2495
|
+
Tags?: Record<string, string>;
|
|
2550
2496
|
/**
|
|
2551
2497
|
* <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
|
|
2552
2498
|
*/
|
|
@@ -2582,11 +2528,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
2582
2528
|
/**
|
|
2583
2529
|
* <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-domain.html">Domain Variables</a>.</p>
|
|
2584
2530
|
*/
|
|
2585
|
-
ConfigurationAliases?:
|
|
2586
|
-
[key: string]: {
|
|
2587
|
-
[key: string]: string;
|
|
2588
|
-
};
|
|
2589
|
-
};
|
|
2531
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
2590
2532
|
/**
|
|
2591
2533
|
* <p>The configuration for DASH content.</p>
|
|
2592
2534
|
*/
|
|
@@ -2634,9 +2576,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
2634
2576
|
/**
|
|
2635
2577
|
* <p>The tags assigned to the playback configuration.</p>
|
|
2636
2578
|
*/
|
|
2637
|
-
Tags?:
|
|
2638
|
-
[key: string]: string;
|
|
2639
|
-
};
|
|
2579
|
+
Tags?: Record<string, string>;
|
|
2640
2580
|
/**
|
|
2641
2581
|
* <p>The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.</p>
|
|
2642
2582
|
*/
|
|
@@ -2700,9 +2640,7 @@ export interface TagResourceRequest {
|
|
|
2700
2640
|
/**
|
|
2701
2641
|
* <p>A comma-separated list of tag key:value pairs.</p>
|
|
2702
2642
|
*/
|
|
2703
|
-
Tags:
|
|
2704
|
-
[key: string]: string;
|
|
2705
|
-
} | undefined;
|
|
2643
|
+
Tags: Record<string, string> | undefined;
|
|
2706
2644
|
}
|
|
2707
2645
|
export declare namespace TagResourceRequest {
|
|
2708
2646
|
/**
|
|
@@ -2782,9 +2720,7 @@ export interface UpdateChannelResponse {
|
|
|
2782
2720
|
/**
|
|
2783
2721
|
* <p>The tags assigned to the channel.</p>
|
|
2784
2722
|
*/
|
|
2785
|
-
Tags?:
|
|
2786
|
-
[key: string]: string;
|
|
2787
|
-
};
|
|
2723
|
+
Tags?: Record<string, string>;
|
|
2788
2724
|
/**
|
|
2789
2725
|
* <p>The channel's tier.</p>
|
|
2790
2726
|
*/
|
|
@@ -2844,9 +2780,7 @@ export interface UpdateLiveSourceResponse {
|
|
|
2844
2780
|
/**
|
|
2845
2781
|
* <p>The tags assigned to the live source.</p>
|
|
2846
2782
|
*/
|
|
2847
|
-
Tags?:
|
|
2848
|
-
[key: string]: string;
|
|
2849
|
-
};
|
|
2783
|
+
Tags?: Record<string, string>;
|
|
2850
2784
|
}
|
|
2851
2785
|
export declare namespace UpdateLiveSourceResponse {
|
|
2852
2786
|
/**
|
|
@@ -2918,9 +2852,7 @@ export interface UpdateSourceLocationResponse {
|
|
|
2918
2852
|
/**
|
|
2919
2853
|
* <p>The tags assigned to the source location.</p>
|
|
2920
2854
|
*/
|
|
2921
|
-
Tags?:
|
|
2922
|
-
[key: string]: string;
|
|
2923
|
-
};
|
|
2855
|
+
Tags?: Record<string, string>;
|
|
2924
2856
|
}
|
|
2925
2857
|
export declare namespace UpdateSourceLocationResponse {
|
|
2926
2858
|
/**
|
|
@@ -2972,9 +2904,7 @@ export interface UpdateVodSourceResponse {
|
|
|
2972
2904
|
/**
|
|
2973
2905
|
* <p>The tags assigned to the VOD source.</p>
|
|
2974
2906
|
*/
|
|
2975
|
-
Tags?:
|
|
2976
|
-
[key: string]: string;
|
|
2977
|
-
};
|
|
2907
|
+
Tags?: Record<string, string>;
|
|
2978
2908
|
/**
|
|
2979
2909
|
* <p>The name of the VOD source.</p>
|
|
2980
2910
|
*/
|
|
@@ -135,9 +135,7 @@ export interface Channel {
|
|
|
135
135
|
|
|
136
136
|
PlaybackMode: string | undefined;
|
|
137
137
|
|
|
138
|
-
Tags?:
|
|
139
|
-
[key: string]: string;
|
|
140
|
-
};
|
|
138
|
+
Tags?: Record<string, string>;
|
|
141
139
|
|
|
142
140
|
Tier: string | undefined;
|
|
143
141
|
}
|
|
@@ -177,9 +175,7 @@ export interface LiveSource {
|
|
|
177
175
|
|
|
178
176
|
SourceLocationName: string | undefined;
|
|
179
177
|
|
|
180
|
-
Tags?:
|
|
181
|
-
[key: string]: string;
|
|
182
|
-
};
|
|
178
|
+
Tags?: Record<string, string>;
|
|
183
179
|
}
|
|
184
180
|
export declare namespace LiveSource {
|
|
185
181
|
|
|
@@ -297,11 +293,7 @@ export interface PlaybackConfiguration {
|
|
|
297
293
|
|
|
298
294
|
CdnConfiguration?: CdnConfiguration;
|
|
299
295
|
|
|
300
|
-
ConfigurationAliases?:
|
|
301
|
-
[key: string]: {
|
|
302
|
-
[key: string]: string;
|
|
303
|
-
};
|
|
304
|
-
};
|
|
296
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
305
297
|
|
|
306
298
|
DashConfiguration?: DashConfiguration;
|
|
307
299
|
|
|
@@ -325,9 +317,7 @@ export interface PlaybackConfiguration {
|
|
|
325
317
|
|
|
326
318
|
SlateAdUrl?: string;
|
|
327
319
|
|
|
328
|
-
Tags?:
|
|
329
|
-
[key: string]: string;
|
|
330
|
-
};
|
|
320
|
+
Tags?: Record<string, string>;
|
|
331
321
|
|
|
332
322
|
TranscodeProfileName?: string;
|
|
333
323
|
|
|
@@ -353,9 +343,7 @@ export declare namespace PrefetchConsumption {
|
|
|
353
343
|
|
|
354
344
|
export interface PrefetchRetrieval {
|
|
355
345
|
|
|
356
|
-
DynamicVariables?:
|
|
357
|
-
[key: string]: string;
|
|
358
|
-
};
|
|
346
|
+
DynamicVariables?: Record<string, string>;
|
|
359
347
|
|
|
360
348
|
EndTime: Date | undefined;
|
|
361
349
|
|
|
@@ -506,9 +494,7 @@ export interface SourceLocation {
|
|
|
506
494
|
|
|
507
495
|
SourceLocationName: string | undefined;
|
|
508
496
|
|
|
509
|
-
Tags?:
|
|
510
|
-
[key: string]: string;
|
|
511
|
-
};
|
|
497
|
+
Tags?: Record<string, string>;
|
|
512
498
|
}
|
|
513
499
|
export declare namespace SourceLocation {
|
|
514
500
|
|
|
@@ -527,9 +513,7 @@ export interface VodSource {
|
|
|
527
513
|
|
|
528
514
|
SourceLocationName: string | undefined;
|
|
529
515
|
|
|
530
|
-
Tags?:
|
|
531
|
-
[key: string]: string;
|
|
532
|
-
};
|
|
516
|
+
Tags?: Record<string, string>;
|
|
533
517
|
|
|
534
518
|
VodSourceName: string | undefined;
|
|
535
519
|
}
|
|
@@ -603,9 +587,7 @@ export interface CreateChannelRequest {
|
|
|
603
587
|
|
|
604
588
|
PlaybackMode: PlaybackMode | string | undefined;
|
|
605
589
|
|
|
606
|
-
Tags?:
|
|
607
|
-
[key: string]: string;
|
|
608
|
-
};
|
|
590
|
+
Tags?: Record<string, string>;
|
|
609
591
|
|
|
610
592
|
Tier?: Tier | string;
|
|
611
593
|
}
|
|
@@ -631,9 +613,7 @@ export interface CreateChannelResponse {
|
|
|
631
613
|
|
|
632
614
|
PlaybackMode?: string;
|
|
633
615
|
|
|
634
|
-
Tags?:
|
|
635
|
-
[key: string]: string;
|
|
636
|
-
};
|
|
616
|
+
Tags?: Record<string, string>;
|
|
637
617
|
|
|
638
618
|
Tier?: string;
|
|
639
619
|
}
|
|
@@ -649,9 +629,7 @@ export interface CreateLiveSourceRequest {
|
|
|
649
629
|
|
|
650
630
|
SourceLocationName: string | undefined;
|
|
651
631
|
|
|
652
|
-
Tags?:
|
|
653
|
-
[key: string]: string;
|
|
654
|
-
};
|
|
632
|
+
Tags?: Record<string, string>;
|
|
655
633
|
}
|
|
656
634
|
export declare namespace CreateLiveSourceRequest {
|
|
657
635
|
|
|
@@ -671,9 +649,7 @@ export interface CreateLiveSourceResponse {
|
|
|
671
649
|
|
|
672
650
|
SourceLocationName?: string;
|
|
673
651
|
|
|
674
|
-
Tags?:
|
|
675
|
-
[key: string]: string;
|
|
676
|
-
};
|
|
652
|
+
Tags?: Record<string, string>;
|
|
677
653
|
}
|
|
678
654
|
export declare namespace CreateLiveSourceResponse {
|
|
679
655
|
|
|
@@ -799,9 +775,7 @@ export interface CreateSourceLocationRequest {
|
|
|
799
775
|
|
|
800
776
|
SourceLocationName: string | undefined;
|
|
801
777
|
|
|
802
|
-
Tags?:
|
|
803
|
-
[key: string]: string;
|
|
804
|
-
};
|
|
778
|
+
Tags?: Record<string, string>;
|
|
805
779
|
}
|
|
806
780
|
export declare namespace CreateSourceLocationRequest {
|
|
807
781
|
|
|
@@ -825,9 +799,7 @@ export interface CreateSourceLocationResponse {
|
|
|
825
799
|
|
|
826
800
|
SourceLocationName?: string;
|
|
827
801
|
|
|
828
|
-
Tags?:
|
|
829
|
-
[key: string]: string;
|
|
830
|
-
};
|
|
802
|
+
Tags?: Record<string, string>;
|
|
831
803
|
}
|
|
832
804
|
export declare namespace CreateSourceLocationResponse {
|
|
833
805
|
|
|
@@ -839,9 +811,7 @@ export interface CreateVodSourceRequest {
|
|
|
839
811
|
|
|
840
812
|
SourceLocationName: string | undefined;
|
|
841
813
|
|
|
842
|
-
Tags?:
|
|
843
|
-
[key: string]: string;
|
|
844
|
-
};
|
|
814
|
+
Tags?: Record<string, string>;
|
|
845
815
|
|
|
846
816
|
VodSourceName: string | undefined;
|
|
847
817
|
}
|
|
@@ -861,9 +831,7 @@ export interface CreateVodSourceResponse {
|
|
|
861
831
|
|
|
862
832
|
SourceLocationName?: string;
|
|
863
833
|
|
|
864
|
-
Tags?:
|
|
865
|
-
[key: string]: string;
|
|
866
|
-
};
|
|
834
|
+
Tags?: Record<string, string>;
|
|
867
835
|
|
|
868
836
|
VodSourceName?: string;
|
|
869
837
|
}
|
|
@@ -1028,9 +996,7 @@ export interface DescribeChannelResponse {
|
|
|
1028
996
|
|
|
1029
997
|
PlaybackMode?: string;
|
|
1030
998
|
|
|
1031
|
-
Tags?:
|
|
1032
|
-
[key: string]: string;
|
|
1033
|
-
};
|
|
999
|
+
Tags?: Record<string, string>;
|
|
1034
1000
|
|
|
1035
1001
|
Tier?: string;
|
|
1036
1002
|
}
|
|
@@ -1062,9 +1028,7 @@ export interface DescribeLiveSourceResponse {
|
|
|
1062
1028
|
|
|
1063
1029
|
SourceLocationName?: string;
|
|
1064
1030
|
|
|
1065
|
-
Tags?:
|
|
1066
|
-
[key: string]: string;
|
|
1067
|
-
};
|
|
1031
|
+
Tags?: Record<string, string>;
|
|
1068
1032
|
}
|
|
1069
1033
|
export declare namespace DescribeLiveSourceResponse {
|
|
1070
1034
|
|
|
@@ -1130,9 +1094,7 @@ export interface DescribeSourceLocationResponse {
|
|
|
1130
1094
|
|
|
1131
1095
|
SourceLocationName?: string;
|
|
1132
1096
|
|
|
1133
|
-
Tags?:
|
|
1134
|
-
[key: string]: string;
|
|
1135
|
-
};
|
|
1097
|
+
Tags?: Record<string, string>;
|
|
1136
1098
|
}
|
|
1137
1099
|
export declare namespace DescribeSourceLocationResponse {
|
|
1138
1100
|
|
|
@@ -1160,9 +1122,7 @@ export interface DescribeVodSourceResponse {
|
|
|
1160
1122
|
|
|
1161
1123
|
SourceLocationName?: string;
|
|
1162
1124
|
|
|
1163
|
-
Tags?:
|
|
1164
|
-
[key: string]: string;
|
|
1165
|
-
};
|
|
1125
|
+
Tags?: Record<string, string>;
|
|
1166
1126
|
|
|
1167
1127
|
VodSourceName?: string;
|
|
1168
1128
|
}
|
|
@@ -1228,11 +1188,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
1228
1188
|
|
|
1229
1189
|
CdnConfiguration?: CdnConfiguration;
|
|
1230
1190
|
|
|
1231
|
-
ConfigurationAliases?:
|
|
1232
|
-
[key: string]: {
|
|
1233
|
-
[key: string]: string;
|
|
1234
|
-
};
|
|
1235
|
-
};
|
|
1191
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
1236
1192
|
|
|
1237
1193
|
DashConfiguration?: DashConfiguration;
|
|
1238
1194
|
|
|
@@ -1256,9 +1212,7 @@ export interface GetPlaybackConfigurationResponse {
|
|
|
1256
1212
|
|
|
1257
1213
|
SlateAdUrl?: string;
|
|
1258
1214
|
|
|
1259
|
-
Tags?:
|
|
1260
|
-
[key: string]: string;
|
|
1261
|
-
};
|
|
1215
|
+
Tags?: Record<string, string>;
|
|
1262
1216
|
|
|
1263
1217
|
TranscodeProfileName?: string;
|
|
1264
1218
|
|
|
@@ -1434,9 +1388,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1434
1388
|
}
|
|
1435
1389
|
export interface ListTagsForResourceResponse {
|
|
1436
1390
|
|
|
1437
|
-
Tags?:
|
|
1438
|
-
[key: string]: string;
|
|
1439
|
-
};
|
|
1391
|
+
Tags?: Record<string, string>;
|
|
1440
1392
|
}
|
|
1441
1393
|
export declare namespace ListTagsForResourceResponse {
|
|
1442
1394
|
|
|
@@ -1490,11 +1442,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
1490
1442
|
|
|
1491
1443
|
CdnConfiguration?: CdnConfiguration;
|
|
1492
1444
|
|
|
1493
|
-
ConfigurationAliases?:
|
|
1494
|
-
[key: string]: {
|
|
1495
|
-
[key: string]: string;
|
|
1496
|
-
};
|
|
1497
|
-
};
|
|
1445
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
1498
1446
|
|
|
1499
1447
|
DashConfiguration?: DashConfigurationForPut;
|
|
1500
1448
|
|
|
@@ -1508,9 +1456,7 @@ export interface PutPlaybackConfigurationRequest {
|
|
|
1508
1456
|
|
|
1509
1457
|
SlateAdUrl?: string;
|
|
1510
1458
|
|
|
1511
|
-
Tags?:
|
|
1512
|
-
[key: string]: string;
|
|
1513
|
-
};
|
|
1459
|
+
Tags?: Record<string, string>;
|
|
1514
1460
|
|
|
1515
1461
|
TranscodeProfileName?: string;
|
|
1516
1462
|
|
|
@@ -1530,11 +1476,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
1530
1476
|
|
|
1531
1477
|
CdnConfiguration?: CdnConfiguration;
|
|
1532
1478
|
|
|
1533
|
-
ConfigurationAliases?:
|
|
1534
|
-
[key: string]: {
|
|
1535
|
-
[key: string]: string;
|
|
1536
|
-
};
|
|
1537
|
-
};
|
|
1479
|
+
ConfigurationAliases?: Record<string, Record<string, string>>;
|
|
1538
1480
|
|
|
1539
1481
|
DashConfiguration?: DashConfiguration;
|
|
1540
1482
|
|
|
@@ -1558,9 +1500,7 @@ export interface PutPlaybackConfigurationResponse {
|
|
|
1558
1500
|
|
|
1559
1501
|
SlateAdUrl?: string;
|
|
1560
1502
|
|
|
1561
|
-
Tags?:
|
|
1562
|
-
[key: string]: string;
|
|
1563
|
-
};
|
|
1503
|
+
Tags?: Record<string, string>;
|
|
1564
1504
|
|
|
1565
1505
|
TranscodeProfileName?: string;
|
|
1566
1506
|
|
|
@@ -1602,9 +1542,7 @@ export interface TagResourceRequest {
|
|
|
1602
1542
|
|
|
1603
1543
|
ResourceArn: string | undefined;
|
|
1604
1544
|
|
|
1605
|
-
Tags:
|
|
1606
|
-
[key: string]: string;
|
|
1607
|
-
} | undefined;
|
|
1545
|
+
Tags: Record<string, string> | undefined;
|
|
1608
1546
|
}
|
|
1609
1547
|
export declare namespace TagResourceRequest {
|
|
1610
1548
|
|
|
@@ -1650,9 +1588,7 @@ export interface UpdateChannelResponse {
|
|
|
1650
1588
|
|
|
1651
1589
|
PlaybackMode?: string;
|
|
1652
1590
|
|
|
1653
|
-
Tags?:
|
|
1654
|
-
[key: string]: string;
|
|
1655
|
-
};
|
|
1591
|
+
Tags?: Record<string, string>;
|
|
1656
1592
|
|
|
1657
1593
|
Tier?: string;
|
|
1658
1594
|
}
|
|
@@ -1686,9 +1622,7 @@ export interface UpdateLiveSourceResponse {
|
|
|
1686
1622
|
|
|
1687
1623
|
SourceLocationName?: string;
|
|
1688
1624
|
|
|
1689
|
-
Tags?:
|
|
1690
|
-
[key: string]: string;
|
|
1691
|
-
};
|
|
1625
|
+
Tags?: Record<string, string>;
|
|
1692
1626
|
}
|
|
1693
1627
|
export declare namespace UpdateLiveSourceResponse {
|
|
1694
1628
|
|
|
@@ -1728,9 +1662,7 @@ export interface UpdateSourceLocationResponse {
|
|
|
1728
1662
|
|
|
1729
1663
|
SourceLocationName?: string;
|
|
1730
1664
|
|
|
1731
|
-
Tags?:
|
|
1732
|
-
[key: string]: string;
|
|
1733
|
-
};
|
|
1665
|
+
Tags?: Record<string, string>;
|
|
1734
1666
|
}
|
|
1735
1667
|
export declare namespace UpdateSourceLocationResponse {
|
|
1736
1668
|
|
|
@@ -1760,9 +1692,7 @@ export interface UpdateVodSourceResponse {
|
|
|
1760
1692
|
|
|
1761
1693
|
SourceLocationName?: string;
|
|
1762
1694
|
|
|
1763
|
-
Tags?:
|
|
1764
|
-
[key: string]: string;
|
|
1765
|
-
};
|
|
1695
|
+
Tags?: Record<string, string>;
|
|
1766
1696
|
|
|
1767
1697
|
VodSourceName?: string;
|
|
1768
1698
|
}
|
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.109.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|