@aws-sdk/client-medialive 3.535.0 → 3.541.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +38 -5
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +12 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +12 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +6 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +6 -0
- package/dist-types/commands/DescribeThumbnailsCommand.d.ts +1 -1
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +6 -0
- package/dist-types/commands/StartChannelCommand.d.ts +6 -0
- package/dist-types/commands/StopChannelCommand.d.ts +6 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +6 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +12 -0
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_1.d.ts +86 -95
- package/dist-types/models/models_2.d.ts +96 -2
- package/dist-types/ts3.4/commands/DescribeThumbnailsCommand.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_1.d.ts +30 -25
- package/dist-types/ts3.4/models/models_2.d.ts +26 -1
- package/package.json +5 -5
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -173,12 +173,16 @@ __export(src_exports, {
|
|
|
173
173
|
H265GopSizeUnits: () => H265GopSizeUnits,
|
|
174
174
|
H265Level: () => H265Level,
|
|
175
175
|
H265LookAheadRateControl: () => H265LookAheadRateControl,
|
|
176
|
+
H265MvOverPictureBoundaries: () => H265MvOverPictureBoundaries,
|
|
177
|
+
H265MvTemporalPredictor: () => H265MvTemporalPredictor,
|
|
176
178
|
H265Profile: () => H265Profile,
|
|
177
179
|
H265RateControlMode: () => H265RateControlMode,
|
|
178
180
|
H265ScanType: () => H265ScanType,
|
|
179
181
|
H265SceneChangeDetect: () => H265SceneChangeDetect,
|
|
180
182
|
H265Tier: () => H265Tier,
|
|
183
|
+
H265TilePadding: () => H265TilePadding,
|
|
181
184
|
H265TimecodeInsertionBehavior: () => H265TimecodeInsertionBehavior,
|
|
185
|
+
H265TreeblockSize: () => H265TreeblockSize,
|
|
182
186
|
HlsAdMarkers: () => HlsAdMarkers,
|
|
183
187
|
HlsAkamaiHttpTransferMode: () => HlsAkamaiHttpTransferMode,
|
|
184
188
|
HlsCaptionLanguageSetting: () => HlsCaptionLanguageSetting,
|
|
@@ -1009,6 +1013,14 @@ var H265LookAheadRateControl = {
|
|
|
1009
1013
|
LOW: "LOW",
|
|
1010
1014
|
MEDIUM: "MEDIUM"
|
|
1011
1015
|
};
|
|
1016
|
+
var H265MvOverPictureBoundaries = {
|
|
1017
|
+
DISABLED: "DISABLED",
|
|
1018
|
+
ENABLED: "ENABLED"
|
|
1019
|
+
};
|
|
1020
|
+
var H265MvTemporalPredictor = {
|
|
1021
|
+
DISABLED: "DISABLED",
|
|
1022
|
+
ENABLED: "ENABLED"
|
|
1023
|
+
};
|
|
1012
1024
|
var H265Profile = {
|
|
1013
1025
|
MAIN: "MAIN",
|
|
1014
1026
|
MAIN_10BIT: "MAIN_10BIT"
|
|
@@ -1030,10 +1042,18 @@ var H265Tier = {
|
|
|
1030
1042
|
HIGH: "HIGH",
|
|
1031
1043
|
MAIN: "MAIN"
|
|
1032
1044
|
};
|
|
1045
|
+
var H265TilePadding = {
|
|
1046
|
+
NONE: "NONE",
|
|
1047
|
+
PADDED: "PADDED"
|
|
1048
|
+
};
|
|
1033
1049
|
var H265TimecodeInsertionBehavior = {
|
|
1034
1050
|
DISABLED: "DISABLED",
|
|
1035
1051
|
PIC_TIMING_SEI: "PIC_TIMING_SEI"
|
|
1036
1052
|
};
|
|
1053
|
+
var H265TreeblockSize = {
|
|
1054
|
+
AUTO: "AUTO",
|
|
1055
|
+
TREE_SIZE_32X32: "TREE_SIZE_32X32"
|
|
1056
|
+
};
|
|
1037
1057
|
var Mpeg2AdaptiveQuantization = {
|
|
1038
1058
|
AUTO: "AUTO",
|
|
1039
1059
|
HIGH: "HIGH",
|
|
@@ -4227,6 +4247,8 @@ var se_H265Settings = /* @__PURE__ */ __name((input, context) => {
|
|
|
4227
4247
|
lookAheadRateControl: [, , `LookAheadRateControl`],
|
|
4228
4248
|
maxBitrate: [, , `MaxBitrate`],
|
|
4229
4249
|
minIInterval: [, , `MinIInterval`],
|
|
4250
|
+
mvOverPictureBoundaries: [, , `MvOverPictureBoundaries`],
|
|
4251
|
+
mvTemporalPredictor: [, , `MvTemporalPredictor`],
|
|
4230
4252
|
parDenominator: [, , `ParDenominator`],
|
|
4231
4253
|
parNumerator: [, , `ParNumerator`],
|
|
4232
4254
|
profile: [, , `Profile`],
|
|
@@ -4236,8 +4258,12 @@ var se_H265Settings = /* @__PURE__ */ __name((input, context) => {
|
|
|
4236
4258
|
sceneChangeDetect: [, , `SceneChangeDetect`],
|
|
4237
4259
|
slices: [, , `Slices`],
|
|
4238
4260
|
tier: [, , `Tier`],
|
|
4261
|
+
tileHeight: [, , `TileHeight`],
|
|
4262
|
+
tilePadding: [, , `TilePadding`],
|
|
4263
|
+
tileWidth: [, , `TileWidth`],
|
|
4239
4264
|
timecodeBurninSettings: [, (_) => se_TimecodeBurninSettings(_, context), `TimecodeBurninSettings`],
|
|
4240
|
-
timecodeInsertion: [, , `TimecodeInsertion`]
|
|
4265
|
+
timecodeInsertion: [, , `TimecodeInsertion`],
|
|
4266
|
+
treeblockSize: [, , `TreeblockSize`]
|
|
4241
4267
|
});
|
|
4242
4268
|
}, "se_H265Settings");
|
|
4243
4269
|
var se_Hdr10Settings = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -6214,6 +6240,8 @@ var de_H265Settings = /* @__PURE__ */ __name((output, context) => {
|
|
|
6214
6240
|
LookAheadRateControl: [, import_smithy_client.expectString, `lookAheadRateControl`],
|
|
6215
6241
|
MaxBitrate: [, import_smithy_client.expectInt32, `maxBitrate`],
|
|
6216
6242
|
MinIInterval: [, import_smithy_client.expectInt32, `minIInterval`],
|
|
6243
|
+
MvOverPictureBoundaries: [, import_smithy_client.expectString, `mvOverPictureBoundaries`],
|
|
6244
|
+
MvTemporalPredictor: [, import_smithy_client.expectString, `mvTemporalPredictor`],
|
|
6217
6245
|
ParDenominator: [, import_smithy_client.expectInt32, `parDenominator`],
|
|
6218
6246
|
ParNumerator: [, import_smithy_client.expectInt32, `parNumerator`],
|
|
6219
6247
|
Profile: [, import_smithy_client.expectString, `profile`],
|
|
@@ -6223,8 +6251,12 @@ var de_H265Settings = /* @__PURE__ */ __name((output, context) => {
|
|
|
6223
6251
|
SceneChangeDetect: [, import_smithy_client.expectString, `sceneChangeDetect`],
|
|
6224
6252
|
Slices: [, import_smithy_client.expectInt32, `slices`],
|
|
6225
6253
|
Tier: [, import_smithy_client.expectString, `tier`],
|
|
6254
|
+
TileHeight: [, import_smithy_client.expectInt32, `tileHeight`],
|
|
6255
|
+
TilePadding: [, import_smithy_client.expectString, `tilePadding`],
|
|
6256
|
+
TileWidth: [, import_smithy_client.expectInt32, `tileWidth`],
|
|
6226
6257
|
TimecodeBurninSettings: [, (_) => de_TimecodeBurninSettings(_, context), `timecodeBurninSettings`],
|
|
6227
|
-
TimecodeInsertion: [, import_smithy_client.expectString, `timecodeInsertion`]
|
|
6258
|
+
TimecodeInsertion: [, import_smithy_client.expectString, `timecodeInsertion`],
|
|
6259
|
+
TreeblockSize: [, import_smithy_client.expectString, `treeblockSize`]
|
|
6228
6260
|
});
|
|
6229
6261
|
}, "de_H265Settings");
|
|
6230
6262
|
var de_Hdr10Settings = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10060,9 +10092,6 @@ var RebootInputDeviceForce = {
|
|
|
10060
10092
|
NO: "NO",
|
|
10061
10093
|
YES: "YES"
|
|
10062
10094
|
};
|
|
10063
|
-
|
|
10064
|
-
// src/index.ts
|
|
10065
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
10066
10095
|
// Annotate the CommonJS export names for ESM import in node:
|
|
10067
10096
|
|
|
10068
10097
|
0 && (module.exports = {
|
|
@@ -10407,12 +10436,16 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
10407
10436
|
H265GopSizeUnits,
|
|
10408
10437
|
H265Level,
|
|
10409
10438
|
H265LookAheadRateControl,
|
|
10439
|
+
H265MvOverPictureBoundaries,
|
|
10440
|
+
H265MvTemporalPredictor,
|
|
10410
10441
|
H265Profile,
|
|
10411
10442
|
H265RateControlMode,
|
|
10412
10443
|
H265ScanType,
|
|
10413
10444
|
H265SceneChangeDetect,
|
|
10414
10445
|
H265Tier,
|
|
10446
|
+
H265TilePadding,
|
|
10415
10447
|
H265TimecodeInsertionBehavior,
|
|
10448
|
+
H265TreeblockSize,
|
|
10416
10449
|
Mpeg2AdaptiveQuantization,
|
|
10417
10450
|
Mpeg2ColorMetadata,
|
|
10418
10451
|
Mpeg2ColorSpace,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -423,6 +423,14 @@ export const H265LookAheadRateControl = {
|
|
|
423
423
|
LOW: "LOW",
|
|
424
424
|
MEDIUM: "MEDIUM",
|
|
425
425
|
};
|
|
426
|
+
export const H265MvOverPictureBoundaries = {
|
|
427
|
+
DISABLED: "DISABLED",
|
|
428
|
+
ENABLED: "ENABLED",
|
|
429
|
+
};
|
|
430
|
+
export const H265MvTemporalPredictor = {
|
|
431
|
+
DISABLED: "DISABLED",
|
|
432
|
+
ENABLED: "ENABLED",
|
|
433
|
+
};
|
|
426
434
|
export const H265Profile = {
|
|
427
435
|
MAIN: "MAIN",
|
|
428
436
|
MAIN_10BIT: "MAIN_10BIT",
|
|
@@ -444,10 +452,18 @@ export const H265Tier = {
|
|
|
444
452
|
HIGH: "HIGH",
|
|
445
453
|
MAIN: "MAIN",
|
|
446
454
|
};
|
|
455
|
+
export const H265TilePadding = {
|
|
456
|
+
NONE: "NONE",
|
|
457
|
+
PADDED: "PADDED",
|
|
458
|
+
};
|
|
447
459
|
export const H265TimecodeInsertionBehavior = {
|
|
448
460
|
DISABLED: "DISABLED",
|
|
449
461
|
PIC_TIMING_SEI: "PIC_TIMING_SEI",
|
|
450
462
|
};
|
|
463
|
+
export const H265TreeblockSize = {
|
|
464
|
+
AUTO: "AUTO",
|
|
465
|
+
TREE_SIZE_32X32: "TREE_SIZE_32X32",
|
|
466
|
+
};
|
|
451
467
|
export const Mpeg2AdaptiveQuantization = {
|
|
452
468
|
AUTO: "AUTO",
|
|
453
469
|
HIGH: "HIGH",
|
|
@@ -2905,6 +2905,8 @@ const se_H265Settings = (input, context) => {
|
|
|
2905
2905
|
lookAheadRateControl: [, , `LookAheadRateControl`],
|
|
2906
2906
|
maxBitrate: [, , `MaxBitrate`],
|
|
2907
2907
|
minIInterval: [, , `MinIInterval`],
|
|
2908
|
+
mvOverPictureBoundaries: [, , `MvOverPictureBoundaries`],
|
|
2909
|
+
mvTemporalPredictor: [, , `MvTemporalPredictor`],
|
|
2908
2910
|
parDenominator: [, , `ParDenominator`],
|
|
2909
2911
|
parNumerator: [, , `ParNumerator`],
|
|
2910
2912
|
profile: [, , `Profile`],
|
|
@@ -2914,8 +2916,12 @@ const se_H265Settings = (input, context) => {
|
|
|
2914
2916
|
sceneChangeDetect: [, , `SceneChangeDetect`],
|
|
2915
2917
|
slices: [, , `Slices`],
|
|
2916
2918
|
tier: [, , `Tier`],
|
|
2919
|
+
tileHeight: [, , `TileHeight`],
|
|
2920
|
+
tilePadding: [, , `TilePadding`],
|
|
2921
|
+
tileWidth: [, , `TileWidth`],
|
|
2917
2922
|
timecodeBurninSettings: [, (_) => se_TimecodeBurninSettings(_, context), `TimecodeBurninSettings`],
|
|
2918
2923
|
timecodeInsertion: [, , `TimecodeInsertion`],
|
|
2924
|
+
treeblockSize: [, , `TreeblockSize`],
|
|
2919
2925
|
});
|
|
2920
2926
|
};
|
|
2921
2927
|
const se_Hdr10Settings = (input, context) => {
|
|
@@ -4980,6 +4986,8 @@ const de_H265Settings = (output, context) => {
|
|
|
4980
4986
|
LookAheadRateControl: [, __expectString, `lookAheadRateControl`],
|
|
4981
4987
|
MaxBitrate: [, __expectInt32, `maxBitrate`],
|
|
4982
4988
|
MinIInterval: [, __expectInt32, `minIInterval`],
|
|
4989
|
+
MvOverPictureBoundaries: [, __expectString, `mvOverPictureBoundaries`],
|
|
4990
|
+
MvTemporalPredictor: [, __expectString, `mvTemporalPredictor`],
|
|
4983
4991
|
ParDenominator: [, __expectInt32, `parDenominator`],
|
|
4984
4992
|
ParNumerator: [, __expectInt32, `parNumerator`],
|
|
4985
4993
|
Profile: [, __expectString, `profile`],
|
|
@@ -4989,8 +4997,12 @@ const de_H265Settings = (output, context) => {
|
|
|
4989
4997
|
SceneChangeDetect: [, __expectString, `sceneChangeDetect`],
|
|
4990
4998
|
Slices: [, __expectInt32, `slices`],
|
|
4991
4999
|
Tier: [, __expectString, `tier`],
|
|
5000
|
+
TileHeight: [, __expectInt32, `tileHeight`],
|
|
5001
|
+
TilePadding: [, __expectString, `tilePadding`],
|
|
5002
|
+
TileWidth: [, __expectInt32, `tileWidth`],
|
|
4992
5003
|
TimecodeBurninSettings: [, (_) => de_TimecodeBurninSettings(_, context), `timecodeBurninSettings`],
|
|
4993
5004
|
TimecodeInsertion: [, __expectString, `timecodeInsertion`],
|
|
5005
|
+
TreeblockSize: [, __expectString, `treeblockSize`],
|
|
4994
5006
|
});
|
|
4995
5007
|
};
|
|
4996
5008
|
const de_Hdr10Settings = (output, context) => {
|
|
@@ -832,6 +832,12 @@ declare const CreateChannelCommand_base: {
|
|
|
832
832
|
* Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
833
833
|
* Prefix: "STRING_VALUE",
|
|
834
834
|
* },
|
|
835
|
+
* MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
836
|
+
* MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
837
|
+
* TileHeight: Number("int"),
|
|
838
|
+
* TilePadding: "NONE" || "PADDED",
|
|
839
|
+
* TileWidth: Number("int"),
|
|
840
|
+
* TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
835
841
|
* },
|
|
836
842
|
* Mpeg2Settings: { // Mpeg2Settings
|
|
837
843
|
* AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -1852,6 +1858,12 @@ declare const CreateChannelCommand_base: {
|
|
|
1852
1858
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
1853
1859
|
* // Prefix: "STRING_VALUE",
|
|
1854
1860
|
* // },
|
|
1861
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
1862
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
1863
|
+
* // TileHeight: Number("int"),
|
|
1864
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
1865
|
+
* // TileWidth: Number("int"),
|
|
1866
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
1855
1867
|
* // },
|
|
1856
1868
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
1857
1869
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -843,6 +843,12 @@ declare const DeleteChannelCommand_base: {
|
|
|
843
843
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
844
844
|
* // Prefix: "STRING_VALUE",
|
|
845
845
|
* // },
|
|
846
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
847
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
848
|
+
* // TileHeight: Number("int"),
|
|
849
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
850
|
+
* // TileWidth: Number("int"),
|
|
851
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
846
852
|
* // },
|
|
847
853
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
848
854
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -843,6 +843,12 @@ declare const DescribeChannelCommand_base: {
|
|
|
843
843
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
844
844
|
* // Prefix: "STRING_VALUE",
|
|
845
845
|
* // },
|
|
846
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
847
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
848
|
+
* // TileHeight: Number("int"),
|
|
849
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
850
|
+
* // TileWidth: Number("int"),
|
|
851
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
846
852
|
* // },
|
|
847
853
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
848
854
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
-
import { DescribeThumbnailsRequest, DescribeThumbnailsResponse } from "../models/
|
|
4
|
+
import { DescribeThumbnailsRequest, DescribeThumbnailsResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -846,6 +846,12 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
846
846
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
847
847
|
* // Prefix: "STRING_VALUE",
|
|
848
848
|
* // },
|
|
849
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
850
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
851
|
+
* // TileHeight: Number("int"),
|
|
852
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
853
|
+
* // TileWidth: Number("int"),
|
|
854
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
849
855
|
* // },
|
|
850
856
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
851
857
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -843,6 +843,12 @@ declare const StartChannelCommand_base: {
|
|
|
843
843
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
844
844
|
* // Prefix: "STRING_VALUE",
|
|
845
845
|
* // },
|
|
846
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
847
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
848
|
+
* // TileHeight: Number("int"),
|
|
849
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
850
|
+
* // TileWidth: Number("int"),
|
|
851
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
846
852
|
* // },
|
|
847
853
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
848
854
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -843,6 +843,12 @@ declare const StopChannelCommand_base: {
|
|
|
843
843
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
844
844
|
* // Prefix: "STRING_VALUE",
|
|
845
845
|
* // },
|
|
846
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
847
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
848
|
+
* // TileHeight: Number("int"),
|
|
849
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
850
|
+
* // TileWidth: Number("int"),
|
|
851
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
846
852
|
* // },
|
|
847
853
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
848
854
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -867,6 +867,12 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
867
867
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
868
868
|
* // Prefix: "STRING_VALUE",
|
|
869
869
|
* // },
|
|
870
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
871
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
872
|
+
* // TileHeight: Number("int"),
|
|
873
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
874
|
+
* // TileWidth: Number("int"),
|
|
875
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
870
876
|
* // },
|
|
871
877
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
872
878
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -832,6 +832,12 @@ declare const UpdateChannelCommand_base: {
|
|
|
832
832
|
* Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
833
833
|
* Prefix: "STRING_VALUE",
|
|
834
834
|
* },
|
|
835
|
+
* MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
836
|
+
* MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
837
|
+
* TileHeight: Number("int"),
|
|
838
|
+
* TilePadding: "NONE" || "PADDED",
|
|
839
|
+
* TileWidth: Number("int"),
|
|
840
|
+
* TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
835
841
|
* },
|
|
836
842
|
* Mpeg2Settings: { // Mpeg2Settings
|
|
837
843
|
* AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
@@ -1837,6 +1843,12 @@ declare const UpdateChannelCommand_base: {
|
|
|
1837
1843
|
* // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
1838
1844
|
* // Prefix: "STRING_VALUE",
|
|
1839
1845
|
* // },
|
|
1846
|
+
* // MvOverPictureBoundaries: "DISABLED" || "ENABLED",
|
|
1847
|
+
* // MvTemporalPredictor: "DISABLED" || "ENABLED",
|
|
1848
|
+
* // TileHeight: Number("int"),
|
|
1849
|
+
* // TilePadding: "NONE" || "PADDED",
|
|
1850
|
+
* // TileWidth: Number("int"),
|
|
1851
|
+
* // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
|
|
1840
1852
|
* // },
|
|
1841
1853
|
* // Mpeg2Settings: { // Mpeg2Settings
|
|
1842
1854
|
* // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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,
|
|
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, 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";
|
|
5
5
|
/**
|
|
6
6
|
* Hls Webdav Settings
|
|
7
7
|
* @public
|
|
@@ -2983,6 +2983,30 @@ export declare const H265LookAheadRateControl: {
|
|
|
2983
2983
|
* @public
|
|
2984
2984
|
*/
|
|
2985
2985
|
export type H265LookAheadRateControl = (typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
|
|
2986
|
+
/**
|
|
2987
|
+
* @public
|
|
2988
|
+
* @enum
|
|
2989
|
+
*/
|
|
2990
|
+
export declare const H265MvOverPictureBoundaries: {
|
|
2991
|
+
readonly DISABLED: "DISABLED";
|
|
2992
|
+
readonly ENABLED: "ENABLED";
|
|
2993
|
+
};
|
|
2994
|
+
/**
|
|
2995
|
+
* @public
|
|
2996
|
+
*/
|
|
2997
|
+
export type H265MvOverPictureBoundaries = (typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
|
|
2998
|
+
/**
|
|
2999
|
+
* @public
|
|
3000
|
+
* @enum
|
|
3001
|
+
*/
|
|
3002
|
+
export declare const H265MvTemporalPredictor: {
|
|
3003
|
+
readonly DISABLED: "DISABLED";
|
|
3004
|
+
readonly ENABLED: "ENABLED";
|
|
3005
|
+
};
|
|
3006
|
+
/**
|
|
3007
|
+
* @public
|
|
3008
|
+
*/
|
|
3009
|
+
export type H265MvTemporalPredictor = (typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
|
|
2986
3010
|
/**
|
|
2987
3011
|
* @public
|
|
2988
3012
|
* @enum
|
|
@@ -3044,6 +3068,18 @@ export declare const H265Tier: {
|
|
|
3044
3068
|
* @public
|
|
3045
3069
|
*/
|
|
3046
3070
|
export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
|
|
3071
|
+
/**
|
|
3072
|
+
* @public
|
|
3073
|
+
* @enum
|
|
3074
|
+
*/
|
|
3075
|
+
export declare const H265TilePadding: {
|
|
3076
|
+
readonly NONE: "NONE";
|
|
3077
|
+
readonly PADDED: "PADDED";
|
|
3078
|
+
};
|
|
3079
|
+
/**
|
|
3080
|
+
* @public
|
|
3081
|
+
*/
|
|
3082
|
+
export type H265TilePadding = (typeof H265TilePadding)[keyof typeof H265TilePadding];
|
|
3047
3083
|
/**
|
|
3048
3084
|
* @public
|
|
3049
3085
|
* @enum
|
|
@@ -3056,6 +3092,18 @@ export declare const H265TimecodeInsertionBehavior: {
|
|
|
3056
3092
|
* @public
|
|
3057
3093
|
*/
|
|
3058
3094
|
export type H265TimecodeInsertionBehavior = (typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
|
|
3095
|
+
/**
|
|
3096
|
+
* @public
|
|
3097
|
+
* @enum
|
|
3098
|
+
*/
|
|
3099
|
+
export declare const H265TreeblockSize: {
|
|
3100
|
+
readonly AUTO: "AUTO";
|
|
3101
|
+
readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
|
|
3102
|
+
};
|
|
3103
|
+
/**
|
|
3104
|
+
* @public
|
|
3105
|
+
*/
|
|
3106
|
+
export type H265TreeblockSize = (typeof H265TreeblockSize)[keyof typeof H265TreeblockSize];
|
|
3059
3107
|
/**
|
|
3060
3108
|
* H265 Settings
|
|
3061
3109
|
* @public
|
|
@@ -3229,6 +3277,43 @@ export interface H265Settings {
|
|
|
3229
3277
|
* @public
|
|
3230
3278
|
*/
|
|
3231
3279
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
3280
|
+
/**
|
|
3281
|
+
* If you are setting up the picture as a tile, you must set this to "disabled". In all other configurations, you typically enter "enabled".
|
|
3282
|
+
* @public
|
|
3283
|
+
*/
|
|
3284
|
+
MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
|
|
3285
|
+
/**
|
|
3286
|
+
* If you are setting up the picture as a tile, you must set this to "disabled". In other configurations, you typically enter "enabled".
|
|
3287
|
+
* @public
|
|
3288
|
+
*/
|
|
3289
|
+
MvTemporalPredictor?: H265MvTemporalPredictor;
|
|
3290
|
+
/**
|
|
3291
|
+
* Set this field to set up the picture as a tile. You must also set tileWidth.
|
|
3292
|
+
* The tile height must result in 22 or fewer rows in the frame. The tile width
|
|
3293
|
+
* must result in 20 or fewer columns in the frame. And finally, the product of the
|
|
3294
|
+
* column count and row count must be 64 of less.
|
|
3295
|
+
* If the tile width and height are specified, MediaLive will override the video
|
|
3296
|
+
* codec slices field with a value that MediaLive calculates
|
|
3297
|
+
* @public
|
|
3298
|
+
*/
|
|
3299
|
+
TileHeight?: number;
|
|
3300
|
+
/**
|
|
3301
|
+
* 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.
|
|
3302
|
+
* If you are setting up the picture as a tile, you must enter "padded".
|
|
3303
|
+
* In all other configurations, you typically enter "none".
|
|
3304
|
+
* @public
|
|
3305
|
+
*/
|
|
3306
|
+
TilePadding?: H265TilePadding;
|
|
3307
|
+
/**
|
|
3308
|
+
* Set this field to set up the picture as a tile. See tileHeight for more information.
|
|
3309
|
+
* @public
|
|
3310
|
+
*/
|
|
3311
|
+
TileWidth?: number;
|
|
3312
|
+
/**
|
|
3313
|
+
* 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".
|
|
3314
|
+
* @public
|
|
3315
|
+
*/
|
|
3316
|
+
TreeblockSize?: H265TreeblockSize;
|
|
3232
3317
|
}
|
|
3233
3318
|
/**
|
|
3234
3319
|
* @public
|
|
@@ -6557,100 +6642,6 @@ export interface DescribeScheduleResponse {
|
|
|
6557
6642
|
*/
|
|
6558
6643
|
ScheduleActions?: ScheduleAction[];
|
|
6559
6644
|
}
|
|
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
6645
|
/**
|
|
6655
6646
|
* @internal
|
|
6656
6647
|
*/
|
|
@@ -1,5 +1,99 @@
|
|
|
1
|
-
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
|
|
2
|
-
import { AccountConfiguration, Channel, EncoderSettings,
|
|
1
|
+
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
|
|
2
|
+
import { AccountConfiguration, Channel, EncoderSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation, ThumbnailDetail, TransferringInputDeviceSummary } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* Placeholder documentation for DescribeThumbnailsRequest
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeThumbnailsRequest {
|
|
8
|
+
/**
|
|
9
|
+
* Unique ID of the channel
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
ChannelId: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Pipeline ID ("0" or "1")
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
PipelineId: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* thumbnail type
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
ThumbnailType: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Placeholder documentation for DescribeThumbnailsResponse
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface DescribeThumbnailsResponse {
|
|
29
|
+
/**
|
|
30
|
+
* Placeholder documentation for __listOfThumbnailDetail
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
ThumbnailDetails?: ThumbnailDetail[];
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Parameters required to attach a MediaConnect flow to the device.
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface InputDeviceMediaConnectConfigurableSettings {
|
|
40
|
+
/**
|
|
41
|
+
* The ARN of the MediaConnect flow to attach this device to.
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
FlowArn?: string;
|
|
45
|
+
/**
|
|
46
|
+
* 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.
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
RoleArn?: string;
|
|
50
|
+
/**
|
|
51
|
+
* The ARN for the secret that holds the encryption key to encrypt the content output by the device.
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
SecretArn?: string;
|
|
55
|
+
/**
|
|
56
|
+
* The name of the MediaConnect Flow source to stream to.
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
SourceName?: string;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Configurable settings for the input device.
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export interface InputDeviceConfigurableSettings {
|
|
66
|
+
/**
|
|
67
|
+
* 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.
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
71
|
+
/**
|
|
72
|
+
* The maximum bitrate in bits per second. Set a value here to throttle the bitrate of the source video.
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
MaxBitrate?: number;
|
|
76
|
+
/**
|
|
77
|
+
* The Link device's buffer size (latency) in milliseconds (ms).
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
LatencyMs?: number;
|
|
81
|
+
/**
|
|
82
|
+
* Choose the codec for the video that the device produces. Only UHD devices can specify this parameter.
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
Codec?: InputDeviceCodec;
|
|
86
|
+
/**
|
|
87
|
+
* 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.
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
|
|
91
|
+
/**
|
|
92
|
+
* 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.
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
|
|
96
|
+
}
|
|
3
97
|
/**
|
|
4
98
|
* Placeholder documentation for ListChannelsRequest
|
|
5
99
|
* @public
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DescribeThumbnailsRequest,
|
|
10
10
|
DescribeThumbnailsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface DescribeThumbnailsCommandInput
|
|
14
14
|
extends DescribeThumbnailsRequest {}
|
|
@@ -34,9 +34,6 @@ import {
|
|
|
34
34
|
InputClass,
|
|
35
35
|
InputDestination,
|
|
36
36
|
InputDestinationRequest,
|
|
37
|
-
InputDeviceCodec,
|
|
38
|
-
InputDeviceConfigurableAudioChannelPairConfig,
|
|
39
|
-
InputDeviceConfiguredInput,
|
|
40
37
|
InputDeviceConnectionState,
|
|
41
38
|
InputDeviceHdSettings,
|
|
42
39
|
InputDeviceNetworkSettings,
|
|
@@ -1049,6 +1046,18 @@ export declare const H265LookAheadRateControl: {
|
|
|
1049
1046
|
};
|
|
1050
1047
|
export type H265LookAheadRateControl =
|
|
1051
1048
|
(typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
|
|
1049
|
+
export declare const H265MvOverPictureBoundaries: {
|
|
1050
|
+
readonly DISABLED: "DISABLED";
|
|
1051
|
+
readonly ENABLED: "ENABLED";
|
|
1052
|
+
};
|
|
1053
|
+
export type H265MvOverPictureBoundaries =
|
|
1054
|
+
(typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
|
|
1055
|
+
export declare const H265MvTemporalPredictor: {
|
|
1056
|
+
readonly DISABLED: "DISABLED";
|
|
1057
|
+
readonly ENABLED: "ENABLED";
|
|
1058
|
+
};
|
|
1059
|
+
export type H265MvTemporalPredictor =
|
|
1060
|
+
(typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
|
|
1052
1061
|
export declare const H265Profile: {
|
|
1053
1062
|
readonly MAIN: "MAIN";
|
|
1054
1063
|
readonly MAIN_10BIT: "MAIN_10BIT";
|
|
@@ -1077,12 +1086,24 @@ export declare const H265Tier: {
|
|
|
1077
1086
|
readonly MAIN: "MAIN";
|
|
1078
1087
|
};
|
|
1079
1088
|
export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
|
|
1089
|
+
export declare const H265TilePadding: {
|
|
1090
|
+
readonly NONE: "NONE";
|
|
1091
|
+
readonly PADDED: "PADDED";
|
|
1092
|
+
};
|
|
1093
|
+
export type H265TilePadding =
|
|
1094
|
+
(typeof H265TilePadding)[keyof typeof H265TilePadding];
|
|
1080
1095
|
export declare const H265TimecodeInsertionBehavior: {
|
|
1081
1096
|
readonly DISABLED: "DISABLED";
|
|
1082
1097
|
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
1083
1098
|
};
|
|
1084
1099
|
export type H265TimecodeInsertionBehavior =
|
|
1085
1100
|
(typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
|
|
1101
|
+
export declare const H265TreeblockSize: {
|
|
1102
|
+
readonly AUTO: "AUTO";
|
|
1103
|
+
readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
|
|
1104
|
+
};
|
|
1105
|
+
export type H265TreeblockSize =
|
|
1106
|
+
(typeof H265TreeblockSize)[keyof typeof H265TreeblockSize];
|
|
1086
1107
|
export interface H265Settings {
|
|
1087
1108
|
AdaptiveQuantization?: H265AdaptiveQuantization;
|
|
1088
1109
|
AfdSignaling?: AfdSignaling;
|
|
@@ -1114,6 +1135,12 @@ export interface H265Settings {
|
|
|
1114
1135
|
Tier?: H265Tier;
|
|
1115
1136
|
TimecodeInsertion?: H265TimecodeInsertionBehavior;
|
|
1116
1137
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
1138
|
+
MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
|
|
1139
|
+
MvTemporalPredictor?: H265MvTemporalPredictor;
|
|
1140
|
+
TileHeight?: number;
|
|
1141
|
+
TilePadding?: H265TilePadding;
|
|
1142
|
+
TileWidth?: number;
|
|
1143
|
+
TreeblockSize?: H265TreeblockSize;
|
|
1117
1144
|
}
|
|
1118
1145
|
export declare const Mpeg2AdaptiveQuantization: {
|
|
1119
1146
|
readonly AUTO: "AUTO";
|
|
@@ -1992,28 +2019,6 @@ export interface DescribeScheduleResponse {
|
|
|
1992
2019
|
NextToken?: string;
|
|
1993
2020
|
ScheduleActions?: ScheduleAction[];
|
|
1994
2021
|
}
|
|
1995
|
-
export interface DescribeThumbnailsRequest {
|
|
1996
|
-
ChannelId: string | undefined;
|
|
1997
|
-
PipelineId: string | undefined;
|
|
1998
|
-
ThumbnailType: string | undefined;
|
|
1999
|
-
}
|
|
2000
|
-
export interface DescribeThumbnailsResponse {
|
|
2001
|
-
ThumbnailDetails?: ThumbnailDetail[];
|
|
2002
|
-
}
|
|
2003
|
-
export interface InputDeviceMediaConnectConfigurableSettings {
|
|
2004
|
-
FlowArn?: string;
|
|
2005
|
-
RoleArn?: string;
|
|
2006
|
-
SecretArn?: string;
|
|
2007
|
-
SourceName?: string;
|
|
2008
|
-
}
|
|
2009
|
-
export interface InputDeviceConfigurableSettings {
|
|
2010
|
-
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
2011
|
-
MaxBitrate?: number;
|
|
2012
|
-
LatencyMs?: number;
|
|
2013
|
-
Codec?: InputDeviceCodec;
|
|
2014
|
-
MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
|
|
2015
|
-
AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
|
|
2016
|
-
}
|
|
2017
2022
|
export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
|
|
2018
2023
|
obj: DescribeInputDeviceThumbnailResponse
|
|
2019
2024
|
) => any;
|
|
@@ -10,6 +10,9 @@ import {
|
|
|
10
10
|
Input,
|
|
11
11
|
InputAttachment,
|
|
12
12
|
InputDestinationRequest,
|
|
13
|
+
InputDeviceCodec,
|
|
14
|
+
InputDeviceConfigurableAudioChannelPairConfig,
|
|
15
|
+
InputDeviceConfiguredInput,
|
|
13
16
|
InputDeviceConnectionState,
|
|
14
17
|
InputDeviceHdSettings,
|
|
15
18
|
InputDeviceNetworkSettings,
|
|
@@ -38,7 +41,6 @@ import {
|
|
|
38
41
|
AccountConfiguration,
|
|
39
42
|
Channel,
|
|
40
43
|
EncoderSettings,
|
|
41
|
-
InputDeviceConfigurableSettings,
|
|
42
44
|
Multiplex,
|
|
43
45
|
MultiplexProgram,
|
|
44
46
|
MultiplexProgramSettings,
|
|
@@ -46,8 +48,31 @@ import {
|
|
|
46
48
|
PipelineDetail,
|
|
47
49
|
RenewalSettings,
|
|
48
50
|
Reservation,
|
|
51
|
+
ThumbnailDetail,
|
|
49
52
|
TransferringInputDeviceSummary,
|
|
50
53
|
} from "./models_1";
|
|
54
|
+
export interface DescribeThumbnailsRequest {
|
|
55
|
+
ChannelId: string | undefined;
|
|
56
|
+
PipelineId: string | undefined;
|
|
57
|
+
ThumbnailType: string | undefined;
|
|
58
|
+
}
|
|
59
|
+
export interface DescribeThumbnailsResponse {
|
|
60
|
+
ThumbnailDetails?: ThumbnailDetail[];
|
|
61
|
+
}
|
|
62
|
+
export interface InputDeviceMediaConnectConfigurableSettings {
|
|
63
|
+
FlowArn?: string;
|
|
64
|
+
RoleArn?: string;
|
|
65
|
+
SecretArn?: string;
|
|
66
|
+
SourceName?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface InputDeviceConfigurableSettings {
|
|
69
|
+
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
70
|
+
MaxBitrate?: number;
|
|
71
|
+
LatencyMs?: number;
|
|
72
|
+
Codec?: InputDeviceCodec;
|
|
73
|
+
MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
|
|
74
|
+
AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
|
|
75
|
+
}
|
|
51
76
|
export interface ListChannelsRequest {
|
|
52
77
|
MaxResults?: number;
|
|
53
78
|
NextToken?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.541.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-medialive",
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
24
|
"@aws-sdk/core": "3.535.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
31
|
"@aws-sdk/types": "3.535.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.2.0",
|