@aws-sdk/client-mediapackagev2 3.662.0 → 3.665.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 +22 -2
- package/dist-cjs/runtimeConfig.js +1 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +19 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +22 -0
- package/dist-types/commands/GetOriginEndpointCommand.d.ts +11 -0
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +43 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -334,6 +334,7 @@ __name(_ThrottlingException, "ThrottlingException");
|
|
|
334
334
|
var ThrottlingException = _ThrottlingException;
|
|
335
335
|
var ValidationExceptionType = {
|
|
336
336
|
CENC_IV_INCOMPATIBLE: "CENC_IV_INCOMPATIBLE",
|
|
337
|
+
CLIP_START_TIME_WITH_START_OR_END: "CLIP_START_TIME_WITH_START_OR_END",
|
|
337
338
|
CONTAINER_TYPE_IMMUTABLE: "CONTAINER_TYPE_IMMUTABLE",
|
|
338
339
|
DIRECT_MODE_WITH_TIMING_SOURCE: "DIRECT_MODE_WITH_TIMING_SOURCE",
|
|
339
340
|
DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS: "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS",
|
|
@@ -368,6 +369,7 @@ var ValidationExceptionType = {
|
|
|
368
369
|
ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE",
|
|
369
370
|
ROLE_ARN_NOT_ASSUMABLE: "ROLE_ARN_NOT_ASSUMABLE",
|
|
370
371
|
SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY: "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY",
|
|
372
|
+
START_TAG_TIME_OFFSET_INVALID: "START_TAG_TIME_OFFSET_INVALID",
|
|
371
373
|
TIMING_SOURCE_MISSING: "TIMING_SOURCE_MISSING",
|
|
372
374
|
TS_CONTAINER_TYPE_WITH_DASH_MANIFEST: "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST",
|
|
373
375
|
UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION: "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION",
|
|
@@ -1422,7 +1424,8 @@ var se_CreateHlsManifestConfiguration = /* @__PURE__ */ __name((input, context)
|
|
|
1422
1424
|
ManifestName: [],
|
|
1423
1425
|
ManifestWindowSeconds: [],
|
|
1424
1426
|
ProgramDateTimeIntervalSeconds: [],
|
|
1425
|
-
ScteHls: import_smithy_client._json
|
|
1427
|
+
ScteHls: import_smithy_client._json,
|
|
1428
|
+
StartTag: (_) => se_StartTag(_, context)
|
|
1426
1429
|
});
|
|
1427
1430
|
}, "se_CreateHlsManifestConfiguration");
|
|
1428
1431
|
var se_CreateHlsManifests = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1437,7 +1440,8 @@ var se_CreateLowLatencyHlsManifestConfiguration = /* @__PURE__ */ __name((input,
|
|
|
1437
1440
|
ManifestName: [],
|
|
1438
1441
|
ManifestWindowSeconds: [],
|
|
1439
1442
|
ProgramDateTimeIntervalSeconds: [],
|
|
1440
|
-
ScteHls: import_smithy_client._json
|
|
1443
|
+
ScteHls: import_smithy_client._json,
|
|
1444
|
+
StartTag: (_) => se_StartTag(_, context)
|
|
1441
1445
|
});
|
|
1442
1446
|
}, "se_CreateLowLatencyHlsManifestConfiguration");
|
|
1443
1447
|
var se_CreateLowLatencyHlsManifests = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1447,12 +1451,19 @@ var se_CreateLowLatencyHlsManifests = /* @__PURE__ */ __name((input, context) =>
|
|
|
1447
1451
|
}, "se_CreateLowLatencyHlsManifests");
|
|
1448
1452
|
var se_FilterConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
1449
1453
|
return (0, import_smithy_client.take)(input, {
|
|
1454
|
+
ClipStartTime: (_) => _.getTime() / 1e3,
|
|
1450
1455
|
End: (_) => _.getTime() / 1e3,
|
|
1451
1456
|
ManifestFilter: [],
|
|
1452
1457
|
Start: (_) => _.getTime() / 1e3,
|
|
1453
1458
|
TimeDelaySeconds: []
|
|
1454
1459
|
});
|
|
1455
1460
|
}, "se_FilterConfiguration");
|
|
1461
|
+
var se_StartTag = /* @__PURE__ */ __name((input, context) => {
|
|
1462
|
+
return (0, import_smithy_client.take)(input, {
|
|
1463
|
+
Precise: [],
|
|
1464
|
+
TimeOffset: import_smithy_client.serializeFloat
|
|
1465
|
+
});
|
|
1466
|
+
}, "se_StartTag");
|
|
1456
1467
|
var de_ChannelGroupListConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
1457
1468
|
return (0, import_smithy_client.take)(output, {
|
|
1458
1469
|
Arn: import_smithy_client.expectString,
|
|
@@ -1487,6 +1498,7 @@ var de_ChannelListConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
1487
1498
|
}, "de_ChannelListConfiguration");
|
|
1488
1499
|
var de_FilterConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
1489
1500
|
return (0, import_smithy_client.take)(output, {
|
|
1501
|
+
ClipStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1490
1502
|
End: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1491
1503
|
ManifestFilter: import_smithy_client.expectString,
|
|
1492
1504
|
Start: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -1523,6 +1535,7 @@ var de_GetHlsManifestConfiguration = /* @__PURE__ */ __name((output, context) =>
|
|
|
1523
1535
|
ManifestWindowSeconds: import_smithy_client.expectInt32,
|
|
1524
1536
|
ProgramDateTimeIntervalSeconds: import_smithy_client.expectInt32,
|
|
1525
1537
|
ScteHls: import_smithy_client._json,
|
|
1538
|
+
StartTag: (_) => de_StartTag(_, context),
|
|
1526
1539
|
Url: import_smithy_client.expectString
|
|
1527
1540
|
});
|
|
1528
1541
|
}, "de_GetHlsManifestConfiguration");
|
|
@@ -1540,6 +1553,7 @@ var de_GetLowLatencyHlsManifestConfiguration = /* @__PURE__ */ __name((output, c
|
|
|
1540
1553
|
ManifestWindowSeconds: import_smithy_client.expectInt32,
|
|
1541
1554
|
ProgramDateTimeIntervalSeconds: import_smithy_client.expectInt32,
|
|
1542
1555
|
ScteHls: import_smithy_client._json,
|
|
1556
|
+
StartTag: (_) => de_StartTag(_, context),
|
|
1543
1557
|
Url: import_smithy_client.expectString
|
|
1544
1558
|
});
|
|
1545
1559
|
}, "de_GetLowLatencyHlsManifestConfiguration");
|
|
@@ -1571,6 +1585,12 @@ var de_OriginEndpointsList = /* @__PURE__ */ __name((output, context) => {
|
|
|
1571
1585
|
});
|
|
1572
1586
|
return retVal;
|
|
1573
1587
|
}, "de_OriginEndpointsList");
|
|
1588
|
+
var de_StartTag = /* @__PURE__ */ __name((output, context) => {
|
|
1589
|
+
return (0, import_smithy_client.take)(output, {
|
|
1590
|
+
Precise: import_smithy_client.expectBoolean,
|
|
1591
|
+
TimeOffset: import_smithy_client.limitedParseFloat32
|
|
1592
|
+
});
|
|
1593
|
+
}, "de_StartTag");
|
|
1574
1594
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
1575
1595
|
httpStatusCode: output.statusCode,
|
|
1576
1596
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -44,6 +44,7 @@ const getRuntimeConfig = (config) => {
|
|
|
44
44
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
45
45
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
46
46
|
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
47
|
+
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
|
|
47
48
|
};
|
|
48
49
|
};
|
|
49
50
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -67,6 +67,7 @@ export class ThrottlingException extends __BaseException {
|
|
|
67
67
|
}
|
|
68
68
|
export const ValidationExceptionType = {
|
|
69
69
|
CENC_IV_INCOMPATIBLE: "CENC_IV_INCOMPATIBLE",
|
|
70
|
+
CLIP_START_TIME_WITH_START_OR_END: "CLIP_START_TIME_WITH_START_OR_END",
|
|
70
71
|
CONTAINER_TYPE_IMMUTABLE: "CONTAINER_TYPE_IMMUTABLE",
|
|
71
72
|
DIRECT_MODE_WITH_TIMING_SOURCE: "DIRECT_MODE_WITH_TIMING_SOURCE",
|
|
72
73
|
DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS: "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS",
|
|
@@ -101,6 +102,7 @@ export const ValidationExceptionType = {
|
|
|
101
102
|
ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE",
|
|
102
103
|
ROLE_ARN_NOT_ASSUMABLE: "ROLE_ARN_NOT_ASSUMABLE",
|
|
103
104
|
SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY: "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY",
|
|
105
|
+
START_TAG_TIME_OFFSET_INVALID: "START_TAG_TIME_OFFSET_INVALID",
|
|
104
106
|
TIMING_SOURCE_MISSING: "TIMING_SOURCE_MISSING",
|
|
105
107
|
TS_CONTAINER_TYPE_WITH_DASH_MANIFEST: "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST",
|
|
106
108
|
UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION: "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
2
2
|
import { requestBuilder as rb } from "@smithy/core";
|
|
3
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, isSerializableHeaderValue, map, parseEpochTimestamp as __parseEpochTimestamp, take, withBaseException, } from "@smithy/smithy-client";
|
|
3
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, isSerializableHeaderValue, limitedParseFloat32 as __limitedParseFloat32, map, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { MediaPackageV2ServiceException as __BaseException } from "../models/MediaPackageV2ServiceException";
|
|
6
6
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
@@ -888,6 +888,7 @@ const se_CreateHlsManifestConfiguration = (input, context) => {
|
|
|
888
888
|
ManifestWindowSeconds: [],
|
|
889
889
|
ProgramDateTimeIntervalSeconds: [],
|
|
890
890
|
ScteHls: _json,
|
|
891
|
+
StartTag: (_) => se_StartTag(_, context),
|
|
891
892
|
});
|
|
892
893
|
};
|
|
893
894
|
const se_CreateHlsManifests = (input, context) => {
|
|
@@ -905,6 +906,7 @@ const se_CreateLowLatencyHlsManifestConfiguration = (input, context) => {
|
|
|
905
906
|
ManifestWindowSeconds: [],
|
|
906
907
|
ProgramDateTimeIntervalSeconds: [],
|
|
907
908
|
ScteHls: _json,
|
|
909
|
+
StartTag: (_) => se_StartTag(_, context),
|
|
908
910
|
});
|
|
909
911
|
};
|
|
910
912
|
const se_CreateLowLatencyHlsManifests = (input, context) => {
|
|
@@ -916,12 +918,19 @@ const se_CreateLowLatencyHlsManifests = (input, context) => {
|
|
|
916
918
|
};
|
|
917
919
|
const se_FilterConfiguration = (input, context) => {
|
|
918
920
|
return take(input, {
|
|
921
|
+
ClipStartTime: (_) => _.getTime() / 1000,
|
|
919
922
|
End: (_) => _.getTime() / 1000,
|
|
920
923
|
ManifestFilter: [],
|
|
921
924
|
Start: (_) => _.getTime() / 1000,
|
|
922
925
|
TimeDelaySeconds: [],
|
|
923
926
|
});
|
|
924
927
|
};
|
|
928
|
+
const se_StartTag = (input, context) => {
|
|
929
|
+
return take(input, {
|
|
930
|
+
Precise: [],
|
|
931
|
+
TimeOffset: __serializeFloat,
|
|
932
|
+
});
|
|
933
|
+
};
|
|
925
934
|
const de_ChannelGroupListConfiguration = (output, context) => {
|
|
926
935
|
return take(output, {
|
|
927
936
|
Arn: __expectString,
|
|
@@ -960,6 +969,7 @@ const de_ChannelListConfiguration = (output, context) => {
|
|
|
960
969
|
};
|
|
961
970
|
const de_FilterConfiguration = (output, context) => {
|
|
962
971
|
return take(output, {
|
|
972
|
+
ClipStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
963
973
|
End: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
964
974
|
ManifestFilter: __expectString,
|
|
965
975
|
Start: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -998,6 +1008,7 @@ const de_GetHlsManifestConfiguration = (output, context) => {
|
|
|
998
1008
|
ManifestWindowSeconds: __expectInt32,
|
|
999
1009
|
ProgramDateTimeIntervalSeconds: __expectInt32,
|
|
1000
1010
|
ScteHls: _json,
|
|
1011
|
+
StartTag: (_) => de_StartTag(_, context),
|
|
1001
1012
|
Url: __expectString,
|
|
1002
1013
|
});
|
|
1003
1014
|
};
|
|
@@ -1017,6 +1028,7 @@ const de_GetLowLatencyHlsManifestConfiguration = (output, context) => {
|
|
|
1017
1028
|
ManifestWindowSeconds: __expectInt32,
|
|
1018
1029
|
ProgramDateTimeIntervalSeconds: __expectInt32,
|
|
1019
1030
|
ScteHls: _json,
|
|
1031
|
+
StartTag: (_) => de_StartTag(_, context),
|
|
1020
1032
|
Url: __expectString,
|
|
1021
1033
|
});
|
|
1022
1034
|
};
|
|
@@ -1052,6 +1064,12 @@ const de_OriginEndpointsList = (output, context) => {
|
|
|
1052
1064
|
});
|
|
1053
1065
|
return retVal;
|
|
1054
1066
|
};
|
|
1067
|
+
const de_StartTag = (output, context) => {
|
|
1068
|
+
return take(output, {
|
|
1069
|
+
Precise: __expectBoolean,
|
|
1070
|
+
TimeOffset: __limitedParseFloat32,
|
|
1071
|
+
});
|
|
1072
|
+
};
|
|
1055
1073
|
const deserializeMetadata = (output) => ({
|
|
1056
1074
|
httpStatusCode: output.statusCode,
|
|
1057
1075
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
2
|
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
|
|
3
3
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
|
-
import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
4
|
+
import { NODE_APP_ID_CONFIG_OPTIONS, defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
5
5
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -40,5 +40,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
40
40
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
41
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
42
42
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
43
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
|
|
43
44
|
};
|
|
44
45
|
};
|
|
@@ -81,6 +81,10 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
81
81
|
* ScteHls: { // ScteHls
|
|
82
82
|
* AdMarkerHls: "DATERANGE",
|
|
83
83
|
* },
|
|
84
|
+
* StartTag: { // StartTag
|
|
85
|
+
* TimeOffset: Number("float"), // required
|
|
86
|
+
* Precise: true || false,
|
|
87
|
+
* },
|
|
84
88
|
* ManifestWindowSeconds: Number("int"),
|
|
85
89
|
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
86
90
|
* FilterConfiguration: { // FilterConfiguration
|
|
@@ -88,6 +92,7 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
88
92
|
* Start: new Date("TIMESTAMP"),
|
|
89
93
|
* End: new Date("TIMESTAMP"),
|
|
90
94
|
* TimeDelaySeconds: Number("int"),
|
|
95
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
91
96
|
* },
|
|
92
97
|
* },
|
|
93
98
|
* ],
|
|
@@ -98,6 +103,10 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
98
103
|
* ScteHls: {
|
|
99
104
|
* AdMarkerHls: "DATERANGE",
|
|
100
105
|
* },
|
|
106
|
+
* StartTag: {
|
|
107
|
+
* TimeOffset: Number("float"), // required
|
|
108
|
+
* Precise: true || false,
|
|
109
|
+
* },
|
|
101
110
|
* ManifestWindowSeconds: Number("int"),
|
|
102
111
|
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
103
112
|
* FilterConfiguration: {
|
|
@@ -105,6 +114,7 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
105
114
|
* Start: new Date("TIMESTAMP"),
|
|
106
115
|
* End: new Date("TIMESTAMP"),
|
|
107
116
|
* TimeDelaySeconds: Number("int"),
|
|
117
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
108
118
|
* },
|
|
109
119
|
* },
|
|
110
120
|
* ],
|
|
@@ -117,6 +127,7 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
117
127
|
* Start: new Date("TIMESTAMP"),
|
|
118
128
|
* End: new Date("TIMESTAMP"),
|
|
119
129
|
* TimeDelaySeconds: Number("int"),
|
|
130
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
120
131
|
* },
|
|
121
132
|
* MinUpdatePeriodSeconds: Number("int"),
|
|
122
133
|
* MinBufferTimeSeconds: Number("int"),
|
|
@@ -203,6 +214,11 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
203
214
|
* // Start: new Date("TIMESTAMP"),
|
|
204
215
|
* // End: new Date("TIMESTAMP"),
|
|
205
216
|
* // TimeDelaySeconds: Number("int"),
|
|
217
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
218
|
+
* // },
|
|
219
|
+
* // StartTag: { // StartTag
|
|
220
|
+
* // TimeOffset: Number("float"), // required
|
|
221
|
+
* // Precise: true || false,
|
|
206
222
|
* // },
|
|
207
223
|
* // },
|
|
208
224
|
* // ],
|
|
@@ -221,6 +237,11 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
221
237
|
* // Start: new Date("TIMESTAMP"),
|
|
222
238
|
* // End: new Date("TIMESTAMP"),
|
|
223
239
|
* // TimeDelaySeconds: Number("int"),
|
|
240
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
241
|
+
* // },
|
|
242
|
+
* // StartTag: {
|
|
243
|
+
* // TimeOffset: Number("float"), // required
|
|
244
|
+
* // Precise: true || false,
|
|
224
245
|
* // },
|
|
225
246
|
* // },
|
|
226
247
|
* // ],
|
|
@@ -234,6 +255,7 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
234
255
|
* // Start: new Date("TIMESTAMP"),
|
|
235
256
|
* // End: new Date("TIMESTAMP"),
|
|
236
257
|
* // TimeDelaySeconds: Number("int"),
|
|
258
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
237
259
|
* // },
|
|
238
260
|
* // MinUpdatePeriodSeconds: Number("int"),
|
|
239
261
|
* // MinBufferTimeSeconds: Number("int"),
|
|
@@ -98,6 +98,11 @@ declare const GetOriginEndpointCommand_base: {
|
|
|
98
98
|
* // Start: new Date("TIMESTAMP"),
|
|
99
99
|
* // End: new Date("TIMESTAMP"),
|
|
100
100
|
* // TimeDelaySeconds: Number("int"),
|
|
101
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
102
|
+
* // },
|
|
103
|
+
* // StartTag: { // StartTag
|
|
104
|
+
* // TimeOffset: Number("float"), // required
|
|
105
|
+
* // Precise: true || false,
|
|
101
106
|
* // },
|
|
102
107
|
* // },
|
|
103
108
|
* // ],
|
|
@@ -116,6 +121,11 @@ declare const GetOriginEndpointCommand_base: {
|
|
|
116
121
|
* // Start: new Date("TIMESTAMP"),
|
|
117
122
|
* // End: new Date("TIMESTAMP"),
|
|
118
123
|
* // TimeDelaySeconds: Number("int"),
|
|
124
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
125
|
+
* // },
|
|
126
|
+
* // StartTag: {
|
|
127
|
+
* // TimeOffset: Number("float"), // required
|
|
128
|
+
* // Precise: true || false,
|
|
119
129
|
* // },
|
|
120
130
|
* // },
|
|
121
131
|
* // ],
|
|
@@ -129,6 +139,7 @@ declare const GetOriginEndpointCommand_base: {
|
|
|
129
139
|
* // Start: new Date("TIMESTAMP"),
|
|
130
140
|
* // End: new Date("TIMESTAMP"),
|
|
131
141
|
* // TimeDelaySeconds: Number("int"),
|
|
142
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
132
143
|
* // },
|
|
133
144
|
* // MinUpdatePeriodSeconds: Number("int"),
|
|
134
145
|
* // MinBufferTimeSeconds: Number("int"),
|
|
@@ -81,6 +81,10 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
81
81
|
* ScteHls: { // ScteHls
|
|
82
82
|
* AdMarkerHls: "DATERANGE",
|
|
83
83
|
* },
|
|
84
|
+
* StartTag: { // StartTag
|
|
85
|
+
* TimeOffset: Number("float"), // required
|
|
86
|
+
* Precise: true || false,
|
|
87
|
+
* },
|
|
84
88
|
* ManifestWindowSeconds: Number("int"),
|
|
85
89
|
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
86
90
|
* FilterConfiguration: { // FilterConfiguration
|
|
@@ -88,6 +92,7 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
88
92
|
* Start: new Date("TIMESTAMP"),
|
|
89
93
|
* End: new Date("TIMESTAMP"),
|
|
90
94
|
* TimeDelaySeconds: Number("int"),
|
|
95
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
91
96
|
* },
|
|
92
97
|
* },
|
|
93
98
|
* ],
|
|
@@ -98,6 +103,10 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
98
103
|
* ScteHls: {
|
|
99
104
|
* AdMarkerHls: "DATERANGE",
|
|
100
105
|
* },
|
|
106
|
+
* StartTag: {
|
|
107
|
+
* TimeOffset: Number("float"), // required
|
|
108
|
+
* Precise: true || false,
|
|
109
|
+
* },
|
|
101
110
|
* ManifestWindowSeconds: Number("int"),
|
|
102
111
|
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
103
112
|
* FilterConfiguration: {
|
|
@@ -105,6 +114,7 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
105
114
|
* Start: new Date("TIMESTAMP"),
|
|
106
115
|
* End: new Date("TIMESTAMP"),
|
|
107
116
|
* TimeDelaySeconds: Number("int"),
|
|
117
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
108
118
|
* },
|
|
109
119
|
* },
|
|
110
120
|
* ],
|
|
@@ -117,6 +127,7 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
117
127
|
* Start: new Date("TIMESTAMP"),
|
|
118
128
|
* End: new Date("TIMESTAMP"),
|
|
119
129
|
* TimeDelaySeconds: Number("int"),
|
|
130
|
+
* ClipStartTime: new Date("TIMESTAMP"),
|
|
120
131
|
* },
|
|
121
132
|
* MinUpdatePeriodSeconds: Number("int"),
|
|
122
133
|
* MinBufferTimeSeconds: Number("int"),
|
|
@@ -201,6 +212,11 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
201
212
|
* // Start: new Date("TIMESTAMP"),
|
|
202
213
|
* // End: new Date("TIMESTAMP"),
|
|
203
214
|
* // TimeDelaySeconds: Number("int"),
|
|
215
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
216
|
+
* // },
|
|
217
|
+
* // StartTag: { // StartTag
|
|
218
|
+
* // TimeOffset: Number("float"), // required
|
|
219
|
+
* // Precise: true || false,
|
|
204
220
|
* // },
|
|
205
221
|
* // },
|
|
206
222
|
* // ],
|
|
@@ -219,6 +235,11 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
219
235
|
* // Start: new Date("TIMESTAMP"),
|
|
220
236
|
* // End: new Date("TIMESTAMP"),
|
|
221
237
|
* // TimeDelaySeconds: Number("int"),
|
|
238
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
239
|
+
* // },
|
|
240
|
+
* // StartTag: {
|
|
241
|
+
* // TimeOffset: Number("float"), // required
|
|
242
|
+
* // Precise: true || false,
|
|
222
243
|
* // },
|
|
223
244
|
* // },
|
|
224
245
|
* // ],
|
|
@@ -241,6 +262,7 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
241
262
|
* // Start: new Date("TIMESTAMP"),
|
|
242
263
|
* // End: new Date("TIMESTAMP"),
|
|
243
264
|
* // TimeDelaySeconds: Number("int"),
|
|
265
|
+
* // ClipStartTime: new Date("TIMESTAMP"),
|
|
244
266
|
* // },
|
|
245
267
|
* // MinUpdatePeriodSeconds: Number("int"),
|
|
246
268
|
* // MinBufferTimeSeconds: Number("int"),
|
|
@@ -151,6 +151,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
151
151
|
*/
|
|
152
152
|
export declare const ValidationExceptionType: {
|
|
153
153
|
readonly CENC_IV_INCOMPATIBLE: "CENC_IV_INCOMPATIBLE";
|
|
154
|
+
readonly CLIP_START_TIME_WITH_START_OR_END: "CLIP_START_TIME_WITH_START_OR_END";
|
|
154
155
|
readonly CONTAINER_TYPE_IMMUTABLE: "CONTAINER_TYPE_IMMUTABLE";
|
|
155
156
|
readonly DIRECT_MODE_WITH_TIMING_SOURCE: "DIRECT_MODE_WITH_TIMING_SOURCE";
|
|
156
157
|
readonly DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS: "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS";
|
|
@@ -185,6 +186,7 @@ export declare const ValidationExceptionType: {
|
|
|
185
186
|
readonly ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE";
|
|
186
187
|
readonly ROLE_ARN_NOT_ASSUMABLE: "ROLE_ARN_NOT_ASSUMABLE";
|
|
187
188
|
readonly SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY: "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY";
|
|
189
|
+
readonly START_TAG_TIME_OFFSET_INVALID: "START_TAG_TIME_OFFSET_INVALID";
|
|
188
190
|
readonly TIMING_SOURCE_MISSING: "TIMING_SOURCE_MISSING";
|
|
189
191
|
readonly TS_CONTAINER_TYPE_WITH_DASH_MANIFEST: "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST";
|
|
190
192
|
readonly UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION: "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION";
|
|
@@ -707,6 +709,11 @@ export interface FilterConfiguration {
|
|
|
707
709
|
* @public
|
|
708
710
|
*/
|
|
709
711
|
TimeDelaySeconds?: number;
|
|
712
|
+
/**
|
|
713
|
+
* <p>Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.</p>
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
716
|
+
ClipStartTime?: Date;
|
|
710
717
|
}
|
|
711
718
|
/**
|
|
712
719
|
* @public
|
|
@@ -915,6 +922,22 @@ export interface ScteHls {
|
|
|
915
922
|
*/
|
|
916
923
|
AdMarkerHls?: AdMarkerHls;
|
|
917
924
|
}
|
|
925
|
+
/**
|
|
926
|
+
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
927
|
+
* @public
|
|
928
|
+
*/
|
|
929
|
+
export interface StartTag {
|
|
930
|
+
/**
|
|
931
|
+
* <p>Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.</p>
|
|
932
|
+
* @public
|
|
933
|
+
*/
|
|
934
|
+
TimeOffset: number | undefined;
|
|
935
|
+
/**
|
|
936
|
+
* <p>Specify the value for PRECISE within your EXT-X-START tag. Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.</p>
|
|
937
|
+
* @public
|
|
938
|
+
*/
|
|
939
|
+
Precise?: boolean;
|
|
940
|
+
}
|
|
918
941
|
/**
|
|
919
942
|
* <p>Create an HTTP live streaming (HLS) manifest configuration.</p>
|
|
920
943
|
* @public
|
|
@@ -935,6 +958,11 @@ export interface CreateHlsManifestConfiguration {
|
|
|
935
958
|
* @public
|
|
936
959
|
*/
|
|
937
960
|
ScteHls?: ScteHls;
|
|
961
|
+
/**
|
|
962
|
+
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
StartTag?: StartTag;
|
|
938
966
|
/**
|
|
939
967
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
940
968
|
* @public
|
|
@@ -975,6 +1003,11 @@ export interface CreateLowLatencyHlsManifestConfiguration {
|
|
|
975
1003
|
* @public
|
|
976
1004
|
*/
|
|
977
1005
|
ScteHls?: ScteHls;
|
|
1006
|
+
/**
|
|
1007
|
+
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1008
|
+
* @public
|
|
1009
|
+
*/
|
|
1010
|
+
StartTag?: StartTag;
|
|
978
1011
|
/**
|
|
979
1012
|
* <p>The total duration (in seconds) of the manifest's content.</p>
|
|
980
1013
|
* @public
|
|
@@ -1507,6 +1540,11 @@ export interface GetHlsManifestConfiguration {
|
|
|
1507
1540
|
* @public
|
|
1508
1541
|
*/
|
|
1509
1542
|
FilterConfiguration?: FilterConfiguration;
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1545
|
+
* @public
|
|
1546
|
+
*/
|
|
1547
|
+
StartTag?: StartTag;
|
|
1510
1548
|
}
|
|
1511
1549
|
/**
|
|
1512
1550
|
* <p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -1552,6 +1590,11 @@ export interface GetLowLatencyHlsManifestConfiguration {
|
|
|
1552
1590
|
* @public
|
|
1553
1591
|
*/
|
|
1554
1592
|
FilterConfiguration?: FilterConfiguration;
|
|
1593
|
+
/**
|
|
1594
|
+
* <p>To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.</p>
|
|
1595
|
+
* @public
|
|
1596
|
+
*/
|
|
1597
|
+
StartTag?: StartTag;
|
|
1555
1598
|
}
|
|
1556
1599
|
/**
|
|
1557
1600
|
* @public
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
-
defaultUserAgentProvider: import("@
|
|
11
|
+
defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
32
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
34
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
11
|
-
defaultUserAgentProvider: import("@
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
20
21
|
apiVersion: string;
|
|
21
22
|
cacheMiddleware?: boolean | undefined;
|
|
22
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
defaultUserAgentProvider: import("@
|
|
23
|
+
defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
24
24
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -28,6 +28,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
28
28
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
29
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
30
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
31
32
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
32
33
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
33
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -62,6 +62,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
62
62
|
}
|
|
63
63
|
export declare const ValidationExceptionType: {
|
|
64
64
|
readonly CENC_IV_INCOMPATIBLE: "CENC_IV_INCOMPATIBLE";
|
|
65
|
+
readonly CLIP_START_TIME_WITH_START_OR_END: "CLIP_START_TIME_WITH_START_OR_END";
|
|
65
66
|
readonly CONTAINER_TYPE_IMMUTABLE: "CONTAINER_TYPE_IMMUTABLE";
|
|
66
67
|
readonly DIRECT_MODE_WITH_TIMING_SOURCE: "DIRECT_MODE_WITH_TIMING_SOURCE";
|
|
67
68
|
readonly DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS: "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS";
|
|
@@ -96,6 +97,7 @@ export declare const ValidationExceptionType: {
|
|
|
96
97
|
readonly ROLE_ARN_LENGTH_OUT_OF_RANGE: "ROLE_ARN_LENGTH_OUT_OF_RANGE";
|
|
97
98
|
readonly ROLE_ARN_NOT_ASSUMABLE: "ROLE_ARN_NOT_ASSUMABLE";
|
|
98
99
|
readonly SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY: "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY";
|
|
100
|
+
readonly START_TAG_TIME_OFFSET_INVALID: "START_TAG_TIME_OFFSET_INVALID";
|
|
99
101
|
readonly TIMING_SOURCE_MISSING: "TIMING_SOURCE_MISSING";
|
|
100
102
|
readonly TS_CONTAINER_TYPE_WITH_DASH_MANIFEST: "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST";
|
|
101
103
|
readonly UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION: "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION";
|
|
@@ -243,6 +245,7 @@ export interface FilterConfiguration {
|
|
|
243
245
|
Start?: Date;
|
|
244
246
|
End?: Date;
|
|
245
247
|
TimeDelaySeconds?: number;
|
|
248
|
+
ClipStartTime?: Date;
|
|
246
249
|
}
|
|
247
250
|
export declare const DashPeriodTrigger: {
|
|
248
251
|
readonly AVAILS: "AVAILS";
|
|
@@ -300,10 +303,15 @@ export interface ForceEndpointErrorConfiguration {
|
|
|
300
303
|
export interface ScteHls {
|
|
301
304
|
AdMarkerHls?: AdMarkerHls;
|
|
302
305
|
}
|
|
306
|
+
export interface StartTag {
|
|
307
|
+
TimeOffset: number | undefined;
|
|
308
|
+
Precise?: boolean;
|
|
309
|
+
}
|
|
303
310
|
export interface CreateHlsManifestConfiguration {
|
|
304
311
|
ManifestName: string | undefined;
|
|
305
312
|
ChildManifestName?: string;
|
|
306
313
|
ScteHls?: ScteHls;
|
|
314
|
+
StartTag?: StartTag;
|
|
307
315
|
ManifestWindowSeconds?: number;
|
|
308
316
|
ProgramDateTimeIntervalSeconds?: number;
|
|
309
317
|
FilterConfiguration?: FilterConfiguration;
|
|
@@ -312,6 +320,7 @@ export interface CreateLowLatencyHlsManifestConfiguration {
|
|
|
312
320
|
ManifestName: string | undefined;
|
|
313
321
|
ChildManifestName?: string;
|
|
314
322
|
ScteHls?: ScteHls;
|
|
323
|
+
StartTag?: StartTag;
|
|
315
324
|
ManifestWindowSeconds?: number;
|
|
316
325
|
ProgramDateTimeIntervalSeconds?: number;
|
|
317
326
|
FilterConfiguration?: FilterConfiguration;
|
|
@@ -441,6 +450,7 @@ export interface GetHlsManifestConfiguration {
|
|
|
441
450
|
ProgramDateTimeIntervalSeconds?: number;
|
|
442
451
|
ScteHls?: ScteHls;
|
|
443
452
|
FilterConfiguration?: FilterConfiguration;
|
|
453
|
+
StartTag?: StartTag;
|
|
444
454
|
}
|
|
445
455
|
export interface GetLowLatencyHlsManifestConfiguration {
|
|
446
456
|
ManifestName: string | undefined;
|
|
@@ -450,6 +460,7 @@ export interface GetLowLatencyHlsManifestConfiguration {
|
|
|
450
460
|
ProgramDateTimeIntervalSeconds?: number;
|
|
451
461
|
ScteHls?: ScteHls;
|
|
452
462
|
FilterConfiguration?: FilterConfiguration;
|
|
463
|
+
StartTag?: StartTag;
|
|
453
464
|
}
|
|
454
465
|
export interface CreateOriginEndpointResponse {
|
|
455
466
|
Arn: string | undefined;
|
|
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
-
defaultUserAgentProvider:
|
|
13
|
-
import("@
|
|
14
|
-
>;
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
14
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
17
17
|
requestHandler:
|
|
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
36
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
userAgentAppId?:
|
|
38
|
+
| string
|
|
39
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
40
|
+
| undefined;
|
|
37
41
|
retryStrategy?:
|
|
38
42
|
| import("@smithy/types").RetryStrategy
|
|
39
43
|
| import("@smithy/types").RetryStrategyV2
|
|
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
13
13
|
) => import("@smithy/types").MemoizedProvider<
|
|
14
14
|
import("@smithy/types").AwsCredentialIdentity
|
|
15
15
|
>;
|
|
16
|
-
defaultUserAgentProvider:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?:
|
|
18
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
| undefined
|
|
20
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
21
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
21
23
|
requestHandler:
|
|
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
26
28
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
32
|
apiVersion: string;
|
|
30
33
|
cacheMiddleware?: boolean | undefined;
|
|
31
34
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
defaultUserAgentProvider:
|
|
26
|
-
import("@
|
|
27
|
-
>;
|
|
25
|
+
defaultUserAgentProvider: (
|
|
26
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
27
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
28
|
credentialDefaultProvider: (
|
|
29
29
|
input: any
|
|
30
30
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MediaPackageV2ClientConfig) => {
|
|
|
38
38
|
import("@smithy/smithy-client").DefaultsMode
|
|
39
39
|
>;
|
|
40
40
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
userAgentAppId?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
44
|
+
| undefined;
|
|
41
45
|
retryStrategy?:
|
|
42
46
|
| import("@smithy/types").RetryStrategy
|
|
43
47
|
| import("@smithy/types").RetryStrategyV2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackagev2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.665.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediapackagev2",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.665.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.665.0",
|
|
25
|
+
"@aws-sdk/core": "3.665.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.665.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.664.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
32
|
+
"@aws-sdk/types": "3.664.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.664.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.664.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.7",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|