@aws-sdk/client-mediaconvert 3.54.1 → 3.58.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 +24 -0
- package/dist-cjs/MediaConvertClient.js +13 -13
- package/dist-cjs/commands/AssociateCertificateCommand.js +3 -3
- package/dist-cjs/commands/CancelJobCommand.js +3 -3
- package/dist-cjs/commands/CreateJobCommand.js +3 -3
- package/dist-cjs/commands/CreateJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/CreatePresetCommand.js +3 -3
- package/dist-cjs/commands/CreateQueueCommand.js +3 -3
- package/dist-cjs/commands/DeleteJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/DeletePolicyCommand.js +3 -3
- package/dist-cjs/commands/DeletePresetCommand.js +3 -3
- package/dist-cjs/commands/DeleteQueueCommand.js +3 -3
- package/dist-cjs/commands/DescribeEndpointsCommand.js +3 -3
- package/dist-cjs/commands/DisassociateCertificateCommand.js +3 -3
- package/dist-cjs/commands/GetJobCommand.js +3 -3
- package/dist-cjs/commands/GetJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/GetPolicyCommand.js +3 -3
- package/dist-cjs/commands/GetPresetCommand.js +3 -3
- package/dist-cjs/commands/GetQueueCommand.js +3 -3
- package/dist-cjs/commands/ListJobTemplatesCommand.js +3 -3
- package/dist-cjs/commands/ListJobsCommand.js +3 -3
- package/dist-cjs/commands/ListPresetsCommand.js +3 -3
- package/dist-cjs/commands/ListQueuesCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/PutPolicyCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/UpdatePresetCommand.js +3 -3
- package/dist-cjs/commands/UpdateQueueCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_restJson1.js +980 -980
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/MediaConvert.js +28 -28
- package/dist-es/pagination/DescribeEndpointsPaginator.js +4 -4
- package/dist-es/pagination/ListJobTemplatesPaginator.js +4 -4
- package/dist-es/pagination/ListJobsPaginator.js +4 -4
- package/dist-es/pagination/ListPresetsPaginator.js +4 -4
- package/dist-es/pagination/ListQueuesPaginator.js +4 -4
- package/dist-es/protocols/Aws_restJson1.js +28 -28
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +34 -34
|
@@ -37,7 +37,7 @@ const serializeAws_restJson1CancelJobCommand = async (input, context) => {
|
|
|
37
37
|
if (labelValue.length <= 0) {
|
|
38
38
|
throw new Error("Empty value provided for input HTTP label: Id.");
|
|
39
39
|
}
|
|
40
|
-
resolvedPath = resolvedPath.replace("{Id}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
40
|
+
resolvedPath = resolvedPath.replace("{Id}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
41
41
|
}
|
|
42
42
|
else {
|
|
43
43
|
throw new Error("No value provided for input HTTP label: Id.");
|
|
@@ -69,7 +69,7 @@ const serializeAws_restJson1CreateJobCommand = async (input, context) => {
|
|
|
69
69
|
}),
|
|
70
70
|
...(input.BillingTagsSource !== undefined &&
|
|
71
71
|
input.BillingTagsSource !== null && { billingTagsSource: input.BillingTagsSource }),
|
|
72
|
-
clientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : uuid_1.v4(),
|
|
72
|
+
clientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
|
|
73
73
|
...(input.HopDestinations !== undefined &&
|
|
74
74
|
input.HopDestinations !== null && {
|
|
75
75
|
hopDestinations: serializeAws_restJson1__listOfHopDestination(input.HopDestinations, context),
|
|
@@ -207,7 +207,7 @@ const serializeAws_restJson1DeleteJobTemplateCommand = async (input, context) =>
|
|
|
207
207
|
if (labelValue.length <= 0) {
|
|
208
208
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
209
209
|
}
|
|
210
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
210
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
211
211
|
}
|
|
212
212
|
else {
|
|
213
213
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -252,7 +252,7 @@ const serializeAws_restJson1DeletePresetCommand = async (input, context) => {
|
|
|
252
252
|
if (labelValue.length <= 0) {
|
|
253
253
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
254
254
|
}
|
|
255
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
255
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
256
256
|
}
|
|
257
257
|
else {
|
|
258
258
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -278,7 +278,7 @@ const serializeAws_restJson1DeleteQueueCommand = async (input, context) => {
|
|
|
278
278
|
if (labelValue.length <= 0) {
|
|
279
279
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
280
280
|
}
|
|
281
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
281
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
282
282
|
}
|
|
283
283
|
else {
|
|
284
284
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -327,7 +327,7 @@ const serializeAws_restJson1DisassociateCertificateCommand = async (input, conte
|
|
|
327
327
|
if (labelValue.length <= 0) {
|
|
328
328
|
throw new Error("Empty value provided for input HTTP label: Arn.");
|
|
329
329
|
}
|
|
330
|
-
resolvedPath = resolvedPath.replace("{Arn}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
330
|
+
resolvedPath = resolvedPath.replace("{Arn}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
331
331
|
}
|
|
332
332
|
else {
|
|
333
333
|
throw new Error("No value provided for input HTTP label: Arn.");
|
|
@@ -353,7 +353,7 @@ const serializeAws_restJson1GetJobCommand = async (input, context) => {
|
|
|
353
353
|
if (labelValue.length <= 0) {
|
|
354
354
|
throw new Error("Empty value provided for input HTTP label: Id.");
|
|
355
355
|
}
|
|
356
|
-
resolvedPath = resolvedPath.replace("{Id}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
356
|
+
resolvedPath = resolvedPath.replace("{Id}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
357
357
|
}
|
|
358
358
|
else {
|
|
359
359
|
throw new Error("No value provided for input HTTP label: Id.");
|
|
@@ -379,7 +379,7 @@ const serializeAws_restJson1GetJobTemplateCommand = async (input, context) => {
|
|
|
379
379
|
if (labelValue.length <= 0) {
|
|
380
380
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
381
381
|
}
|
|
382
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
382
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
383
383
|
}
|
|
384
384
|
else {
|
|
385
385
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -424,7 +424,7 @@ const serializeAws_restJson1GetPresetCommand = async (input, context) => {
|
|
|
424
424
|
if (labelValue.length <= 0) {
|
|
425
425
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
426
426
|
}
|
|
427
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
427
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
428
428
|
}
|
|
429
429
|
else {
|
|
430
430
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -450,7 +450,7 @@ const serializeAws_restJson1GetQueueCommand = async (input, context) => {
|
|
|
450
450
|
if (labelValue.length <= 0) {
|
|
451
451
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
452
452
|
}
|
|
453
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
453
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
454
454
|
}
|
|
455
455
|
else {
|
|
456
456
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -571,7 +571,7 @@ const serializeAws_restJson1ListTagsForResourceCommand = async (input, context)
|
|
|
571
571
|
if (labelValue.length <= 0) {
|
|
572
572
|
throw new Error("Empty value provided for input HTTP label: Arn.");
|
|
573
573
|
}
|
|
574
|
-
resolvedPath = resolvedPath.replace("{Arn}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
574
|
+
resolvedPath = resolvedPath.replace("{Arn}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
575
575
|
}
|
|
576
576
|
else {
|
|
577
577
|
throw new Error("No value provided for input HTTP label: Arn.");
|
|
@@ -644,7 +644,7 @@ const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
|
|
|
644
644
|
if (labelValue.length <= 0) {
|
|
645
645
|
throw new Error("Empty value provided for input HTTP label: Arn.");
|
|
646
646
|
}
|
|
647
|
-
resolvedPath = resolvedPath.replace("{Arn}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
647
|
+
resolvedPath = resolvedPath.replace("{Arn}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
648
648
|
}
|
|
649
649
|
else {
|
|
650
650
|
throw new Error("No value provided for input HTTP label: Arn.");
|
|
@@ -676,7 +676,7 @@ const serializeAws_restJson1UpdateJobTemplateCommand = async (input, context) =>
|
|
|
676
676
|
if (labelValue.length <= 0) {
|
|
677
677
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
678
678
|
}
|
|
679
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
679
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
680
680
|
}
|
|
681
681
|
else {
|
|
682
682
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -722,7 +722,7 @@ const serializeAws_restJson1UpdatePresetCommand = async (input, context) => {
|
|
|
722
722
|
if (labelValue.length <= 0) {
|
|
723
723
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
724
724
|
}
|
|
725
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
725
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
726
726
|
}
|
|
727
727
|
else {
|
|
728
728
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -756,7 +756,7 @@ const serializeAws_restJson1UpdateQueueCommand = async (input, context) => {
|
|
|
756
756
|
if (labelValue.length <= 0) {
|
|
757
757
|
throw new Error("Empty value provided for input HTTP label: Name.");
|
|
758
758
|
}
|
|
759
|
-
resolvedPath = resolvedPath.replace("{Name}", smithy_client_1.extendedEncodeURIComponent(labelValue));
|
|
759
|
+
resolvedPath = resolvedPath.replace("{Name}", (0, smithy_client_1.extendedEncodeURIComponent)(labelValue));
|
|
760
760
|
}
|
|
761
761
|
else {
|
|
762
762
|
throw new Error("No value provided for input HTTP label: Name.");
|
|
@@ -826,7 +826,7 @@ const deserializeAws_restJson1AssociateCertificateCommandError = async (output,
|
|
|
826
826
|
$fault: "client",
|
|
827
827
|
$metadata: deserializeMetadata(output),
|
|
828
828
|
});
|
|
829
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
829
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
830
830
|
}
|
|
831
831
|
};
|
|
832
832
|
const deserializeAws_restJson1CancelJobCommand = async (output, context) => {
|
|
@@ -874,7 +874,7 @@ const deserializeAws_restJson1CancelJobCommandError = async (output, context) =>
|
|
|
874
874
|
$fault: "client",
|
|
875
875
|
$metadata: deserializeMetadata(output),
|
|
876
876
|
});
|
|
877
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
877
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
878
878
|
}
|
|
879
879
|
};
|
|
880
880
|
const deserializeAws_restJson1CreateJobCommand = async (output, context) => {
|
|
@@ -885,7 +885,7 @@ const deserializeAws_restJson1CreateJobCommand = async (output, context) => {
|
|
|
885
885
|
$metadata: deserializeMetadata(output),
|
|
886
886
|
Job: undefined,
|
|
887
887
|
};
|
|
888
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
888
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
889
889
|
if (data.job !== undefined && data.job !== null) {
|
|
890
890
|
contents.Job = deserializeAws_restJson1Job(data.job, context);
|
|
891
891
|
}
|
|
@@ -926,7 +926,7 @@ const deserializeAws_restJson1CreateJobCommandError = async (output, context) =>
|
|
|
926
926
|
$fault: "client",
|
|
927
927
|
$metadata: deserializeMetadata(output),
|
|
928
928
|
});
|
|
929
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
929
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
930
930
|
}
|
|
931
931
|
};
|
|
932
932
|
const deserializeAws_restJson1CreateJobTemplateCommand = async (output, context) => {
|
|
@@ -937,7 +937,7 @@ const deserializeAws_restJson1CreateJobTemplateCommand = async (output, context)
|
|
|
937
937
|
$metadata: deserializeMetadata(output),
|
|
938
938
|
JobTemplate: undefined,
|
|
939
939
|
};
|
|
940
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
940
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
941
941
|
if (data.jobTemplate !== undefined && data.jobTemplate !== null) {
|
|
942
942
|
contents.JobTemplate = deserializeAws_restJson1JobTemplate(data.jobTemplate, context);
|
|
943
943
|
}
|
|
@@ -978,7 +978,7 @@ const deserializeAws_restJson1CreateJobTemplateCommandError = async (output, con
|
|
|
978
978
|
$fault: "client",
|
|
979
979
|
$metadata: deserializeMetadata(output),
|
|
980
980
|
});
|
|
981
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
981
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
982
982
|
}
|
|
983
983
|
};
|
|
984
984
|
const deserializeAws_restJson1CreatePresetCommand = async (output, context) => {
|
|
@@ -989,7 +989,7 @@ const deserializeAws_restJson1CreatePresetCommand = async (output, context) => {
|
|
|
989
989
|
$metadata: deserializeMetadata(output),
|
|
990
990
|
Preset: undefined,
|
|
991
991
|
};
|
|
992
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
992
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
993
993
|
if (data.preset !== undefined && data.preset !== null) {
|
|
994
994
|
contents.Preset = deserializeAws_restJson1Preset(data.preset, context);
|
|
995
995
|
}
|
|
@@ -1030,7 +1030,7 @@ const deserializeAws_restJson1CreatePresetCommandError = async (output, context)
|
|
|
1030
1030
|
$fault: "client",
|
|
1031
1031
|
$metadata: deserializeMetadata(output),
|
|
1032
1032
|
});
|
|
1033
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1033
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1034
1034
|
}
|
|
1035
1035
|
};
|
|
1036
1036
|
const deserializeAws_restJson1CreateQueueCommand = async (output, context) => {
|
|
@@ -1041,7 +1041,7 @@ const deserializeAws_restJson1CreateQueueCommand = async (output, context) => {
|
|
|
1041
1041
|
$metadata: deserializeMetadata(output),
|
|
1042
1042
|
Queue: undefined,
|
|
1043
1043
|
};
|
|
1044
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1044
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1045
1045
|
if (data.queue !== undefined && data.queue !== null) {
|
|
1046
1046
|
contents.Queue = deserializeAws_restJson1Queue(data.queue, context);
|
|
1047
1047
|
}
|
|
@@ -1082,7 +1082,7 @@ const deserializeAws_restJson1CreateQueueCommandError = async (output, context)
|
|
|
1082
1082
|
$fault: "client",
|
|
1083
1083
|
$metadata: deserializeMetadata(output),
|
|
1084
1084
|
});
|
|
1085
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1085
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1086
1086
|
}
|
|
1087
1087
|
};
|
|
1088
1088
|
const deserializeAws_restJson1DeleteJobTemplateCommand = async (output, context) => {
|
|
@@ -1130,7 +1130,7 @@ const deserializeAws_restJson1DeleteJobTemplateCommandError = async (output, con
|
|
|
1130
1130
|
$fault: "client",
|
|
1131
1131
|
$metadata: deserializeMetadata(output),
|
|
1132
1132
|
});
|
|
1133
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1133
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1134
1134
|
}
|
|
1135
1135
|
};
|
|
1136
1136
|
const deserializeAws_restJson1DeletePolicyCommand = async (output, context) => {
|
|
@@ -1178,7 +1178,7 @@ const deserializeAws_restJson1DeletePolicyCommandError = async (output, context)
|
|
|
1178
1178
|
$fault: "client",
|
|
1179
1179
|
$metadata: deserializeMetadata(output),
|
|
1180
1180
|
});
|
|
1181
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1181
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1182
1182
|
}
|
|
1183
1183
|
};
|
|
1184
1184
|
const deserializeAws_restJson1DeletePresetCommand = async (output, context) => {
|
|
@@ -1226,7 +1226,7 @@ const deserializeAws_restJson1DeletePresetCommandError = async (output, context)
|
|
|
1226
1226
|
$fault: "client",
|
|
1227
1227
|
$metadata: deserializeMetadata(output),
|
|
1228
1228
|
});
|
|
1229
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1229
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1230
1230
|
}
|
|
1231
1231
|
};
|
|
1232
1232
|
const deserializeAws_restJson1DeleteQueueCommand = async (output, context) => {
|
|
@@ -1274,7 +1274,7 @@ const deserializeAws_restJson1DeleteQueueCommandError = async (output, context)
|
|
|
1274
1274
|
$fault: "client",
|
|
1275
1275
|
$metadata: deserializeMetadata(output),
|
|
1276
1276
|
});
|
|
1277
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1277
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1278
1278
|
}
|
|
1279
1279
|
};
|
|
1280
1280
|
const deserializeAws_restJson1DescribeEndpointsCommand = async (output, context) => {
|
|
@@ -1286,12 +1286,12 @@ const deserializeAws_restJson1DescribeEndpointsCommand = async (output, context)
|
|
|
1286
1286
|
Endpoints: undefined,
|
|
1287
1287
|
NextToken: undefined,
|
|
1288
1288
|
};
|
|
1289
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1289
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1290
1290
|
if (data.endpoints !== undefined && data.endpoints !== null) {
|
|
1291
1291
|
contents.Endpoints = deserializeAws_restJson1__listOfEndpoint(data.endpoints, context);
|
|
1292
1292
|
}
|
|
1293
1293
|
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
1294
|
-
contents.NextToken = smithy_client_1.expectString(data.nextToken);
|
|
1294
|
+
contents.NextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1295
1295
|
}
|
|
1296
1296
|
return Promise.resolve(contents);
|
|
1297
1297
|
};
|
|
@@ -1330,7 +1330,7 @@ const deserializeAws_restJson1DescribeEndpointsCommandError = async (output, con
|
|
|
1330
1330
|
$fault: "client",
|
|
1331
1331
|
$metadata: deserializeMetadata(output),
|
|
1332
1332
|
});
|
|
1333
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1333
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1334
1334
|
}
|
|
1335
1335
|
};
|
|
1336
1336
|
const deserializeAws_restJson1DisassociateCertificateCommand = async (output, context) => {
|
|
@@ -1378,7 +1378,7 @@ const deserializeAws_restJson1DisassociateCertificateCommandError = async (outpu
|
|
|
1378
1378
|
$fault: "client",
|
|
1379
1379
|
$metadata: deserializeMetadata(output),
|
|
1380
1380
|
});
|
|
1381
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1381
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1382
1382
|
}
|
|
1383
1383
|
};
|
|
1384
1384
|
const deserializeAws_restJson1GetJobCommand = async (output, context) => {
|
|
@@ -1389,7 +1389,7 @@ const deserializeAws_restJson1GetJobCommand = async (output, context) => {
|
|
|
1389
1389
|
$metadata: deserializeMetadata(output),
|
|
1390
1390
|
Job: undefined,
|
|
1391
1391
|
};
|
|
1392
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1392
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1393
1393
|
if (data.job !== undefined && data.job !== null) {
|
|
1394
1394
|
contents.Job = deserializeAws_restJson1Job(data.job, context);
|
|
1395
1395
|
}
|
|
@@ -1430,7 +1430,7 @@ const deserializeAws_restJson1GetJobCommandError = async (output, context) => {
|
|
|
1430
1430
|
$fault: "client",
|
|
1431
1431
|
$metadata: deserializeMetadata(output),
|
|
1432
1432
|
});
|
|
1433
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1433
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1434
1434
|
}
|
|
1435
1435
|
};
|
|
1436
1436
|
const deserializeAws_restJson1GetJobTemplateCommand = async (output, context) => {
|
|
@@ -1441,7 +1441,7 @@ const deserializeAws_restJson1GetJobTemplateCommand = async (output, context) =>
|
|
|
1441
1441
|
$metadata: deserializeMetadata(output),
|
|
1442
1442
|
JobTemplate: undefined,
|
|
1443
1443
|
};
|
|
1444
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1444
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1445
1445
|
if (data.jobTemplate !== undefined && data.jobTemplate !== null) {
|
|
1446
1446
|
contents.JobTemplate = deserializeAws_restJson1JobTemplate(data.jobTemplate, context);
|
|
1447
1447
|
}
|
|
@@ -1482,7 +1482,7 @@ const deserializeAws_restJson1GetJobTemplateCommandError = async (output, contex
|
|
|
1482
1482
|
$fault: "client",
|
|
1483
1483
|
$metadata: deserializeMetadata(output),
|
|
1484
1484
|
});
|
|
1485
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1485
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1486
1486
|
}
|
|
1487
1487
|
};
|
|
1488
1488
|
const deserializeAws_restJson1GetPolicyCommand = async (output, context) => {
|
|
@@ -1493,7 +1493,7 @@ const deserializeAws_restJson1GetPolicyCommand = async (output, context) => {
|
|
|
1493
1493
|
$metadata: deserializeMetadata(output),
|
|
1494
1494
|
Policy: undefined,
|
|
1495
1495
|
};
|
|
1496
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1496
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1497
1497
|
if (data.policy !== undefined && data.policy !== null) {
|
|
1498
1498
|
contents.Policy = deserializeAws_restJson1Policy(data.policy, context);
|
|
1499
1499
|
}
|
|
@@ -1534,7 +1534,7 @@ const deserializeAws_restJson1GetPolicyCommandError = async (output, context) =>
|
|
|
1534
1534
|
$fault: "client",
|
|
1535
1535
|
$metadata: deserializeMetadata(output),
|
|
1536
1536
|
});
|
|
1537
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1537
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1538
1538
|
}
|
|
1539
1539
|
};
|
|
1540
1540
|
const deserializeAws_restJson1GetPresetCommand = async (output, context) => {
|
|
@@ -1545,7 +1545,7 @@ const deserializeAws_restJson1GetPresetCommand = async (output, context) => {
|
|
|
1545
1545
|
$metadata: deserializeMetadata(output),
|
|
1546
1546
|
Preset: undefined,
|
|
1547
1547
|
};
|
|
1548
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1548
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1549
1549
|
if (data.preset !== undefined && data.preset !== null) {
|
|
1550
1550
|
contents.Preset = deserializeAws_restJson1Preset(data.preset, context);
|
|
1551
1551
|
}
|
|
@@ -1586,7 +1586,7 @@ const deserializeAws_restJson1GetPresetCommandError = async (output, context) =>
|
|
|
1586
1586
|
$fault: "client",
|
|
1587
1587
|
$metadata: deserializeMetadata(output),
|
|
1588
1588
|
});
|
|
1589
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1589
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1590
1590
|
}
|
|
1591
1591
|
};
|
|
1592
1592
|
const deserializeAws_restJson1GetQueueCommand = async (output, context) => {
|
|
@@ -1597,7 +1597,7 @@ const deserializeAws_restJson1GetQueueCommand = async (output, context) => {
|
|
|
1597
1597
|
$metadata: deserializeMetadata(output),
|
|
1598
1598
|
Queue: undefined,
|
|
1599
1599
|
};
|
|
1600
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1600
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1601
1601
|
if (data.queue !== undefined && data.queue !== null) {
|
|
1602
1602
|
contents.Queue = deserializeAws_restJson1Queue(data.queue, context);
|
|
1603
1603
|
}
|
|
@@ -1638,7 +1638,7 @@ const deserializeAws_restJson1GetQueueCommandError = async (output, context) =>
|
|
|
1638
1638
|
$fault: "client",
|
|
1639
1639
|
$metadata: deserializeMetadata(output),
|
|
1640
1640
|
});
|
|
1641
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1641
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1642
1642
|
}
|
|
1643
1643
|
};
|
|
1644
1644
|
const deserializeAws_restJson1ListJobsCommand = async (output, context) => {
|
|
@@ -1650,12 +1650,12 @@ const deserializeAws_restJson1ListJobsCommand = async (output, context) => {
|
|
|
1650
1650
|
Jobs: undefined,
|
|
1651
1651
|
NextToken: undefined,
|
|
1652
1652
|
};
|
|
1653
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1653
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1654
1654
|
if (data.jobs !== undefined && data.jobs !== null) {
|
|
1655
1655
|
contents.Jobs = deserializeAws_restJson1__listOfJob(data.jobs, context);
|
|
1656
1656
|
}
|
|
1657
1657
|
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
1658
|
-
contents.NextToken = smithy_client_1.expectString(data.nextToken);
|
|
1658
|
+
contents.NextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1659
1659
|
}
|
|
1660
1660
|
return Promise.resolve(contents);
|
|
1661
1661
|
};
|
|
@@ -1694,7 +1694,7 @@ const deserializeAws_restJson1ListJobsCommandError = async (output, context) =>
|
|
|
1694
1694
|
$fault: "client",
|
|
1695
1695
|
$metadata: deserializeMetadata(output),
|
|
1696
1696
|
});
|
|
1697
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1697
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1698
1698
|
}
|
|
1699
1699
|
};
|
|
1700
1700
|
const deserializeAws_restJson1ListJobTemplatesCommand = async (output, context) => {
|
|
@@ -1706,12 +1706,12 @@ const deserializeAws_restJson1ListJobTemplatesCommand = async (output, context)
|
|
|
1706
1706
|
JobTemplates: undefined,
|
|
1707
1707
|
NextToken: undefined,
|
|
1708
1708
|
};
|
|
1709
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1709
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1710
1710
|
if (data.jobTemplates !== undefined && data.jobTemplates !== null) {
|
|
1711
1711
|
contents.JobTemplates = deserializeAws_restJson1__listOfJobTemplate(data.jobTemplates, context);
|
|
1712
1712
|
}
|
|
1713
1713
|
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
1714
|
-
contents.NextToken = smithy_client_1.expectString(data.nextToken);
|
|
1714
|
+
contents.NextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1715
1715
|
}
|
|
1716
1716
|
return Promise.resolve(contents);
|
|
1717
1717
|
};
|
|
@@ -1750,7 +1750,7 @@ const deserializeAws_restJson1ListJobTemplatesCommandError = async (output, cont
|
|
|
1750
1750
|
$fault: "client",
|
|
1751
1751
|
$metadata: deserializeMetadata(output),
|
|
1752
1752
|
});
|
|
1753
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1753
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1754
1754
|
}
|
|
1755
1755
|
};
|
|
1756
1756
|
const deserializeAws_restJson1ListPresetsCommand = async (output, context) => {
|
|
@@ -1762,9 +1762,9 @@ const deserializeAws_restJson1ListPresetsCommand = async (output, context) => {
|
|
|
1762
1762
|
NextToken: undefined,
|
|
1763
1763
|
Presets: undefined,
|
|
1764
1764
|
};
|
|
1765
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1765
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1766
1766
|
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
1767
|
-
contents.NextToken = smithy_client_1.expectString(data.nextToken);
|
|
1767
|
+
contents.NextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1768
1768
|
}
|
|
1769
1769
|
if (data.presets !== undefined && data.presets !== null) {
|
|
1770
1770
|
contents.Presets = deserializeAws_restJson1__listOfPreset(data.presets, context);
|
|
@@ -1806,7 +1806,7 @@ const deserializeAws_restJson1ListPresetsCommandError = async (output, context)
|
|
|
1806
1806
|
$fault: "client",
|
|
1807
1807
|
$metadata: deserializeMetadata(output),
|
|
1808
1808
|
});
|
|
1809
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1809
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1810
1810
|
}
|
|
1811
1811
|
};
|
|
1812
1812
|
const deserializeAws_restJson1ListQueuesCommand = async (output, context) => {
|
|
@@ -1818,9 +1818,9 @@ const deserializeAws_restJson1ListQueuesCommand = async (output, context) => {
|
|
|
1818
1818
|
NextToken: undefined,
|
|
1819
1819
|
Queues: undefined,
|
|
1820
1820
|
};
|
|
1821
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1821
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1822
1822
|
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
1823
|
-
contents.NextToken = smithy_client_1.expectString(data.nextToken);
|
|
1823
|
+
contents.NextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1824
1824
|
}
|
|
1825
1825
|
if (data.queues !== undefined && data.queues !== null) {
|
|
1826
1826
|
contents.Queues = deserializeAws_restJson1__listOfQueue(data.queues, context);
|
|
@@ -1862,7 +1862,7 @@ const deserializeAws_restJson1ListQueuesCommandError = async (output, context) =
|
|
|
1862
1862
|
$fault: "client",
|
|
1863
1863
|
$metadata: deserializeMetadata(output),
|
|
1864
1864
|
});
|
|
1865
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1865
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1866
1866
|
}
|
|
1867
1867
|
};
|
|
1868
1868
|
const deserializeAws_restJson1ListTagsForResourceCommand = async (output, context) => {
|
|
@@ -1873,7 +1873,7 @@ const deserializeAws_restJson1ListTagsForResourceCommand = async (output, contex
|
|
|
1873
1873
|
$metadata: deserializeMetadata(output),
|
|
1874
1874
|
ResourceTags: undefined,
|
|
1875
1875
|
};
|
|
1876
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1876
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1877
1877
|
if (data.resourceTags !== undefined && data.resourceTags !== null) {
|
|
1878
1878
|
contents.ResourceTags = deserializeAws_restJson1ResourceTags(data.resourceTags, context);
|
|
1879
1879
|
}
|
|
@@ -1914,7 +1914,7 @@ const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, c
|
|
|
1914
1914
|
$fault: "client",
|
|
1915
1915
|
$metadata: deserializeMetadata(output),
|
|
1916
1916
|
});
|
|
1917
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1917
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1918
1918
|
}
|
|
1919
1919
|
};
|
|
1920
1920
|
const deserializeAws_restJson1PutPolicyCommand = async (output, context) => {
|
|
@@ -1925,7 +1925,7 @@ const deserializeAws_restJson1PutPolicyCommand = async (output, context) => {
|
|
|
1925
1925
|
$metadata: deserializeMetadata(output),
|
|
1926
1926
|
Policy: undefined,
|
|
1927
1927
|
};
|
|
1928
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
1928
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1929
1929
|
if (data.policy !== undefined && data.policy !== null) {
|
|
1930
1930
|
contents.Policy = deserializeAws_restJson1Policy(data.policy, context);
|
|
1931
1931
|
}
|
|
@@ -1966,7 +1966,7 @@ const deserializeAws_restJson1PutPolicyCommandError = async (output, context) =>
|
|
|
1966
1966
|
$fault: "client",
|
|
1967
1967
|
$metadata: deserializeMetadata(output),
|
|
1968
1968
|
});
|
|
1969
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
1969
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
1970
1970
|
}
|
|
1971
1971
|
};
|
|
1972
1972
|
const deserializeAws_restJson1TagResourceCommand = async (output, context) => {
|
|
@@ -2014,7 +2014,7 @@ const deserializeAws_restJson1TagResourceCommandError = async (output, context)
|
|
|
2014
2014
|
$fault: "client",
|
|
2015
2015
|
$metadata: deserializeMetadata(output),
|
|
2016
2016
|
});
|
|
2017
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
2017
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
2018
2018
|
}
|
|
2019
2019
|
};
|
|
2020
2020
|
const deserializeAws_restJson1UntagResourceCommand = async (output, context) => {
|
|
@@ -2062,7 +2062,7 @@ const deserializeAws_restJson1UntagResourceCommandError = async (output, context
|
|
|
2062
2062
|
$fault: "client",
|
|
2063
2063
|
$metadata: deserializeMetadata(output),
|
|
2064
2064
|
});
|
|
2065
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
2065
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
2066
2066
|
}
|
|
2067
2067
|
};
|
|
2068
2068
|
const deserializeAws_restJson1UpdateJobTemplateCommand = async (output, context) => {
|
|
@@ -2073,7 +2073,7 @@ const deserializeAws_restJson1UpdateJobTemplateCommand = async (output, context)
|
|
|
2073
2073
|
$metadata: deserializeMetadata(output),
|
|
2074
2074
|
JobTemplate: undefined,
|
|
2075
2075
|
};
|
|
2076
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
2076
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
2077
2077
|
if (data.jobTemplate !== undefined && data.jobTemplate !== null) {
|
|
2078
2078
|
contents.JobTemplate = deserializeAws_restJson1JobTemplate(data.jobTemplate, context);
|
|
2079
2079
|
}
|
|
@@ -2114,7 +2114,7 @@ const deserializeAws_restJson1UpdateJobTemplateCommandError = async (output, con
|
|
|
2114
2114
|
$fault: "client",
|
|
2115
2115
|
$metadata: deserializeMetadata(output),
|
|
2116
2116
|
});
|
|
2117
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
2117
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
2118
2118
|
}
|
|
2119
2119
|
};
|
|
2120
2120
|
const deserializeAws_restJson1UpdatePresetCommand = async (output, context) => {
|
|
@@ -2125,7 +2125,7 @@ const deserializeAws_restJson1UpdatePresetCommand = async (output, context) => {
|
|
|
2125
2125
|
$metadata: deserializeMetadata(output),
|
|
2126
2126
|
Preset: undefined,
|
|
2127
2127
|
};
|
|
2128
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
2128
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
2129
2129
|
if (data.preset !== undefined && data.preset !== null) {
|
|
2130
2130
|
contents.Preset = deserializeAws_restJson1Preset(data.preset, context);
|
|
2131
2131
|
}
|
|
@@ -2166,7 +2166,7 @@ const deserializeAws_restJson1UpdatePresetCommandError = async (output, context)
|
|
|
2166
2166
|
$fault: "client",
|
|
2167
2167
|
$metadata: deserializeMetadata(output),
|
|
2168
2168
|
});
|
|
2169
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
2169
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
2170
2170
|
}
|
|
2171
2171
|
};
|
|
2172
2172
|
const deserializeAws_restJson1UpdateQueueCommand = async (output, context) => {
|
|
@@ -2177,7 +2177,7 @@ const deserializeAws_restJson1UpdateQueueCommand = async (output, context) => {
|
|
|
2177
2177
|
$metadata: deserializeMetadata(output),
|
|
2178
2178
|
Queue: undefined,
|
|
2179
2179
|
};
|
|
2180
|
-
const data = smithy_client_1.expectNonNull(smithy_client_1.expectObject(await parseBody(output.body, context)), "body");
|
|
2180
|
+
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
2181
2181
|
if (data.queue !== undefined && data.queue !== null) {
|
|
2182
2182
|
contents.Queue = deserializeAws_restJson1Queue(data.queue, context);
|
|
2183
2183
|
}
|
|
@@ -2218,80 +2218,80 @@ const deserializeAws_restJson1UpdateQueueCommandError = async (output, context)
|
|
|
2218
2218
|
$fault: "client",
|
|
2219
2219
|
$metadata: deserializeMetadata(output),
|
|
2220
2220
|
});
|
|
2221
|
-
throw smithy_client_1.decorateServiceException(response, parsedBody);
|
|
2221
|
+
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
2222
2222
|
}
|
|
2223
2223
|
};
|
|
2224
2224
|
const deserializeAws_restJson1BadRequestExceptionResponse = async (parsedOutput, context) => {
|
|
2225
2225
|
const contents = {};
|
|
2226
2226
|
const data = parsedOutput.body;
|
|
2227
2227
|
if (data.message !== undefined && data.message !== null) {
|
|
2228
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2228
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2229
2229
|
}
|
|
2230
2230
|
const exception = new models_1_1.BadRequestException({
|
|
2231
2231
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2232
2232
|
...contents,
|
|
2233
2233
|
});
|
|
2234
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2234
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2235
2235
|
};
|
|
2236
2236
|
const deserializeAws_restJson1ConflictExceptionResponse = async (parsedOutput, context) => {
|
|
2237
2237
|
const contents = {};
|
|
2238
2238
|
const data = parsedOutput.body;
|
|
2239
2239
|
if (data.message !== undefined && data.message !== null) {
|
|
2240
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2240
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2241
2241
|
}
|
|
2242
2242
|
const exception = new models_1_1.ConflictException({
|
|
2243
2243
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2244
2244
|
...contents,
|
|
2245
2245
|
});
|
|
2246
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2246
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2247
2247
|
};
|
|
2248
2248
|
const deserializeAws_restJson1ForbiddenExceptionResponse = async (parsedOutput, context) => {
|
|
2249
2249
|
const contents = {};
|
|
2250
2250
|
const data = parsedOutput.body;
|
|
2251
2251
|
if (data.message !== undefined && data.message !== null) {
|
|
2252
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2252
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2253
2253
|
}
|
|
2254
2254
|
const exception = new models_1_1.ForbiddenException({
|
|
2255
2255
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2256
2256
|
...contents,
|
|
2257
2257
|
});
|
|
2258
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2258
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2259
2259
|
};
|
|
2260
2260
|
const deserializeAws_restJson1InternalServerErrorExceptionResponse = async (parsedOutput, context) => {
|
|
2261
2261
|
const contents = {};
|
|
2262
2262
|
const data = parsedOutput.body;
|
|
2263
2263
|
if (data.message !== undefined && data.message !== null) {
|
|
2264
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2264
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2265
2265
|
}
|
|
2266
2266
|
const exception = new models_1_1.InternalServerErrorException({
|
|
2267
2267
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2268
2268
|
...contents,
|
|
2269
2269
|
});
|
|
2270
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2270
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2271
2271
|
};
|
|
2272
2272
|
const deserializeAws_restJson1NotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2273
2273
|
const contents = {};
|
|
2274
2274
|
const data = parsedOutput.body;
|
|
2275
2275
|
if (data.message !== undefined && data.message !== null) {
|
|
2276
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2276
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2277
2277
|
}
|
|
2278
2278
|
const exception = new models_1_1.NotFoundException({
|
|
2279
2279
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2280
2280
|
...contents,
|
|
2281
2281
|
});
|
|
2282
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2282
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2283
2283
|
};
|
|
2284
2284
|
const deserializeAws_restJson1TooManyRequestsExceptionResponse = async (parsedOutput, context) => {
|
|
2285
2285
|
const contents = {};
|
|
2286
2286
|
const data = parsedOutput.body;
|
|
2287
2287
|
if (data.message !== undefined && data.message !== null) {
|
|
2288
|
-
contents.Message = smithy_client_1.expectString(data.message);
|
|
2288
|
+
contents.Message = (0, smithy_client_1.expectString)(data.message);
|
|
2289
2289
|
}
|
|
2290
2290
|
const exception = new models_1_1.TooManyRequestsException({
|
|
2291
2291
|
$metadata: deserializeMetadata(parsedOutput),
|
|
2292
2292
|
...contents,
|
|
2293
2293
|
});
|
|
2294
|
-
return smithy_client_1.decorateServiceException(exception, parsedOutput.body);
|
|
2294
|
+
return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
|
|
2295
2295
|
};
|
|
2296
2296
|
const serializeAws_restJson1__listOf__doubleMinNegative60Max6 = (input, context) => {
|
|
2297
2297
|
return input
|
|
@@ -2300,7 +2300,7 @@ const serializeAws_restJson1__listOf__doubleMinNegative60Max6 = (input, context)
|
|
|
2300
2300
|
if (entry === null) {
|
|
2301
2301
|
return null;
|
|
2302
2302
|
}
|
|
2303
|
-
return smithy_client_1.serializeFloat(entry);
|
|
2303
|
+
return (0, smithy_client_1.serializeFloat)(entry);
|
|
2304
2304
|
});
|
|
2305
2305
|
};
|
|
2306
2306
|
const serializeAws_restJson1__listOf__integerMin1Max2147483647 = (input, context) => {
|
|
@@ -2755,7 +2755,7 @@ const serializeAws_restJson1AudioNormalizationSettings = (input, context) => {
|
|
|
2755
2755
|
...(input.PeakCalculation !== undefined &&
|
|
2756
2756
|
input.PeakCalculation !== null && { peakCalculation: input.PeakCalculation }),
|
|
2757
2757
|
...(input.TargetLkfs !== undefined &&
|
|
2758
|
-
input.TargetLkfs !== null && { targetLkfs: smithy_client_1.serializeFloat(input.TargetLkfs) }),
|
|
2758
|
+
input.TargetLkfs !== null && { targetLkfs: (0, smithy_client_1.serializeFloat)(input.TargetLkfs) }),
|
|
2759
2759
|
};
|
|
2760
2760
|
};
|
|
2761
2761
|
const serializeAws_restJson1AudioSelector = (input, context) => {
|
|
@@ -2816,7 +2816,7 @@ const serializeAws_restJson1Av1QvbrSettings = (input, context) => {
|
|
|
2816
2816
|
input.QvbrQualityLevel !== null && { qvbrQualityLevel: input.QvbrQualityLevel }),
|
|
2817
2817
|
...(input.QvbrQualityLevelFineTune !== undefined &&
|
|
2818
2818
|
input.QvbrQualityLevelFineTune !== null && {
|
|
2819
|
-
qvbrQualityLevelFineTune: smithy_client_1.serializeFloat(input.QvbrQualityLevelFineTune),
|
|
2819
|
+
qvbrQualityLevelFineTune: (0, smithy_client_1.serializeFloat)(input.QvbrQualityLevelFineTune),
|
|
2820
2820
|
}),
|
|
2821
2821
|
};
|
|
2822
2822
|
};
|
|
@@ -2835,7 +2835,7 @@ const serializeAws_restJson1Av1Settings = (input, context) => {
|
|
|
2835
2835
|
input.FramerateDenominator !== null && { framerateDenominator: input.FramerateDenominator }),
|
|
2836
2836
|
...(input.FramerateNumerator !== undefined &&
|
|
2837
2837
|
input.FramerateNumerator !== null && { framerateNumerator: input.FramerateNumerator }),
|
|
2838
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
2838
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
2839
2839
|
...(input.MaxBitrate !== undefined && input.MaxBitrate !== null && { maxBitrate: input.MaxBitrate }),
|
|
2840
2840
|
...(input.NumberBFramesBetweenReferenceFrames !== undefined &&
|
|
2841
2841
|
input.NumberBFramesBetweenReferenceFrames !== null && {
|
|
@@ -3115,7 +3115,7 @@ const serializeAws_restJson1CmafGroupSettings = (input, context) => {
|
|
|
3115
3115
|
input.ManifestDurationFormat !== null && { manifestDurationFormat: input.ManifestDurationFormat }),
|
|
3116
3116
|
...(input.MinBufferTime !== undefined && input.MinBufferTime !== null && { minBufferTime: input.MinBufferTime }),
|
|
3117
3117
|
...(input.MinFinalSegmentLength !== undefined &&
|
|
3118
|
-
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: smithy_client_1.serializeFloat(input.MinFinalSegmentLength) }),
|
|
3118
|
+
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: (0, smithy_client_1.serializeFloat)(input.MinFinalSegmentLength) }),
|
|
3119
3119
|
...(input.MpdProfile !== undefined && input.MpdProfile !== null && { mpdProfile: input.MpdProfile }),
|
|
3120
3120
|
...(input.PtsOffsetHandlingForBFrames !== undefined &&
|
|
3121
3121
|
input.PtsOffsetHandlingForBFrames !== null && { ptsOffsetHandlingForBFrames: input.PtsOffsetHandlingForBFrames }),
|
|
@@ -3147,7 +3147,7 @@ const serializeAws_restJson1CmafImageBasedTrickPlaySettings = (input, context) =
|
|
|
3147
3147
|
...(input.ThumbnailHeight !== undefined &&
|
|
3148
3148
|
input.ThumbnailHeight !== null && { thumbnailHeight: input.ThumbnailHeight }),
|
|
3149
3149
|
...(input.ThumbnailInterval !== undefined &&
|
|
3150
|
-
input.ThumbnailInterval !== null && { thumbnailInterval: smithy_client_1.serializeFloat(input.ThumbnailInterval) }),
|
|
3150
|
+
input.ThumbnailInterval !== null && { thumbnailInterval: (0, smithy_client_1.serializeFloat)(input.ThumbnailInterval) }),
|
|
3151
3151
|
...(input.ThumbnailWidth !== undefined &&
|
|
3152
3152
|
input.ThumbnailWidth !== null && { thumbnailWidth: input.ThumbnailWidth }),
|
|
3153
3153
|
...(input.TileHeight !== undefined && input.TileHeight !== null && { tileHeight: input.TileHeight }),
|
|
@@ -3260,7 +3260,7 @@ const serializeAws_restJson1DashIsoGroupSettings = (input, context) => {
|
|
|
3260
3260
|
}),
|
|
3261
3261
|
...(input.MinBufferTime !== undefined && input.MinBufferTime !== null && { minBufferTime: input.MinBufferTime }),
|
|
3262
3262
|
...(input.MinFinalSegmentLength !== undefined &&
|
|
3263
|
-
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: smithy_client_1.serializeFloat(input.MinFinalSegmentLength) }),
|
|
3263
|
+
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: (0, smithy_client_1.serializeFloat)(input.MinFinalSegmentLength) }),
|
|
3264
3264
|
...(input.MpdProfile !== undefined && input.MpdProfile !== null && { mpdProfile: input.MpdProfile }),
|
|
3265
3265
|
...(input.PtsOffsetHandlingForBFrames !== undefined &&
|
|
3266
3266
|
input.PtsOffsetHandlingForBFrames !== null && { ptsOffsetHandlingForBFrames: input.PtsOffsetHandlingForBFrames }),
|
|
@@ -3282,7 +3282,7 @@ const serializeAws_restJson1DashIsoImageBasedTrickPlaySettings = (input, context
|
|
|
3282
3282
|
...(input.ThumbnailHeight !== undefined &&
|
|
3283
3283
|
input.ThumbnailHeight !== null && { thumbnailHeight: input.ThumbnailHeight }),
|
|
3284
3284
|
...(input.ThumbnailInterval !== undefined &&
|
|
3285
|
-
input.ThumbnailInterval !== null && { thumbnailInterval: smithy_client_1.serializeFloat(input.ThumbnailInterval) }),
|
|
3285
|
+
input.ThumbnailInterval !== null && { thumbnailInterval: (0, smithy_client_1.serializeFloat)(input.ThumbnailInterval) }),
|
|
3286
3286
|
...(input.ThumbnailWidth !== undefined &&
|
|
3287
3287
|
input.ThumbnailWidth !== null && { thumbnailWidth: input.ThumbnailWidth }),
|
|
3288
3288
|
...(input.TileHeight !== undefined && input.TileHeight !== null && { tileHeight: input.TileHeight }),
|
|
@@ -3402,13 +3402,13 @@ const serializeAws_restJson1Eac3AtmosSettings = (input, context) => {
|
|
|
3402
3402
|
...(input.DynamicRangeControl !== undefined &&
|
|
3403
3403
|
input.DynamicRangeControl !== null && { dynamicRangeControl: input.DynamicRangeControl }),
|
|
3404
3404
|
...(input.LoRoCenterMixLevel !== undefined &&
|
|
3405
|
-
input.LoRoCenterMixLevel !== null && { loRoCenterMixLevel: smithy_client_1.serializeFloat(input.LoRoCenterMixLevel) }),
|
|
3405
|
+
input.LoRoCenterMixLevel !== null && { loRoCenterMixLevel: (0, smithy_client_1.serializeFloat)(input.LoRoCenterMixLevel) }),
|
|
3406
3406
|
...(input.LoRoSurroundMixLevel !== undefined &&
|
|
3407
|
-
input.LoRoSurroundMixLevel !== null && { loRoSurroundMixLevel: smithy_client_1.serializeFloat(input.LoRoSurroundMixLevel) }),
|
|
3407
|
+
input.LoRoSurroundMixLevel !== null && { loRoSurroundMixLevel: (0, smithy_client_1.serializeFloat)(input.LoRoSurroundMixLevel) }),
|
|
3408
3408
|
...(input.LtRtCenterMixLevel !== undefined &&
|
|
3409
|
-
input.LtRtCenterMixLevel !== null && { ltRtCenterMixLevel: smithy_client_1.serializeFloat(input.LtRtCenterMixLevel) }),
|
|
3409
|
+
input.LtRtCenterMixLevel !== null && { ltRtCenterMixLevel: (0, smithy_client_1.serializeFloat)(input.LtRtCenterMixLevel) }),
|
|
3410
3410
|
...(input.LtRtSurroundMixLevel !== undefined &&
|
|
3411
|
-
input.LtRtSurroundMixLevel !== null && { ltRtSurroundMixLevel: smithy_client_1.serializeFloat(input.LtRtSurroundMixLevel) }),
|
|
3411
|
+
input.LtRtSurroundMixLevel !== null && { ltRtSurroundMixLevel: (0, smithy_client_1.serializeFloat)(input.LtRtSurroundMixLevel) }),
|
|
3412
3412
|
...(input.MeteringMode !== undefined && input.MeteringMode !== null && { meteringMode: input.MeteringMode }),
|
|
3413
3413
|
...(input.SampleRate !== undefined && input.SampleRate !== null && { sampleRate: input.SampleRate }),
|
|
3414
3414
|
...(input.SpeechThreshold !== undefined &&
|
|
@@ -3434,13 +3434,13 @@ const serializeAws_restJson1Eac3Settings = (input, context) => {
|
|
|
3434
3434
|
...(input.LfeControl !== undefined && input.LfeControl !== null && { lfeControl: input.LfeControl }),
|
|
3435
3435
|
...(input.LfeFilter !== undefined && input.LfeFilter !== null && { lfeFilter: input.LfeFilter }),
|
|
3436
3436
|
...(input.LoRoCenterMixLevel !== undefined &&
|
|
3437
|
-
input.LoRoCenterMixLevel !== null && { loRoCenterMixLevel: smithy_client_1.serializeFloat(input.LoRoCenterMixLevel) }),
|
|
3437
|
+
input.LoRoCenterMixLevel !== null && { loRoCenterMixLevel: (0, smithy_client_1.serializeFloat)(input.LoRoCenterMixLevel) }),
|
|
3438
3438
|
...(input.LoRoSurroundMixLevel !== undefined &&
|
|
3439
|
-
input.LoRoSurroundMixLevel !== null && { loRoSurroundMixLevel: smithy_client_1.serializeFloat(input.LoRoSurroundMixLevel) }),
|
|
3439
|
+
input.LoRoSurroundMixLevel !== null && { loRoSurroundMixLevel: (0, smithy_client_1.serializeFloat)(input.LoRoSurroundMixLevel) }),
|
|
3440
3440
|
...(input.LtRtCenterMixLevel !== undefined &&
|
|
3441
|
-
input.LtRtCenterMixLevel !== null && { ltRtCenterMixLevel: smithy_client_1.serializeFloat(input.LtRtCenterMixLevel) }),
|
|
3441
|
+
input.LtRtCenterMixLevel !== null && { ltRtCenterMixLevel: (0, smithy_client_1.serializeFloat)(input.LtRtCenterMixLevel) }),
|
|
3442
3442
|
...(input.LtRtSurroundMixLevel !== undefined &&
|
|
3443
|
-
input.LtRtSurroundMixLevel !== null && { ltRtSurroundMixLevel: smithy_client_1.serializeFloat(input.LtRtSurroundMixLevel) }),
|
|
3443
|
+
input.LtRtSurroundMixLevel !== null && { ltRtSurroundMixLevel: (0, smithy_client_1.serializeFloat)(input.LtRtSurroundMixLevel) }),
|
|
3444
3444
|
...(input.MetadataControl !== undefined &&
|
|
3445
3445
|
input.MetadataControl !== null && { metadataControl: input.MetadataControl }),
|
|
3446
3446
|
...(input.PassthroughControl !== undefined &&
|
|
@@ -3550,7 +3550,7 @@ const serializeAws_restJson1H264QvbrSettings = (input, context) => {
|
|
|
3550
3550
|
input.QvbrQualityLevel !== null && { qvbrQualityLevel: input.QvbrQualityLevel }),
|
|
3551
3551
|
...(input.QvbrQualityLevelFineTune !== undefined &&
|
|
3552
3552
|
input.QvbrQualityLevelFineTune !== null && {
|
|
3553
|
-
qvbrQualityLevelFineTune: smithy_client_1.serializeFloat(input.QvbrQualityLevelFineTune),
|
|
3553
|
+
qvbrQualityLevelFineTune: (0, smithy_client_1.serializeFloat)(input.QvbrQualityLevelFineTune),
|
|
3554
3554
|
}),
|
|
3555
3555
|
};
|
|
3556
3556
|
};
|
|
@@ -3580,7 +3580,7 @@ const serializeAws_restJson1H264Settings = (input, context) => {
|
|
|
3580
3580
|
...(input.GopBReference !== undefined && input.GopBReference !== null && { gopBReference: input.GopBReference }),
|
|
3581
3581
|
...(input.GopClosedCadence !== undefined &&
|
|
3582
3582
|
input.GopClosedCadence !== null && { gopClosedCadence: input.GopClosedCadence }),
|
|
3583
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
3583
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
3584
3584
|
...(input.GopSizeUnits !== undefined && input.GopSizeUnits !== null && { gopSizeUnits: input.GopSizeUnits }),
|
|
3585
3585
|
...(input.HrdBufferInitialFillPercentage !== undefined &&
|
|
3586
3586
|
input.HrdBufferInitialFillPercentage !== null && {
|
|
@@ -3636,7 +3636,7 @@ const serializeAws_restJson1H265QvbrSettings = (input, context) => {
|
|
|
3636
3636
|
input.QvbrQualityLevel !== null && { qvbrQualityLevel: input.QvbrQualityLevel }),
|
|
3637
3637
|
...(input.QvbrQualityLevelFineTune !== undefined &&
|
|
3638
3638
|
input.QvbrQualityLevelFineTune !== null && {
|
|
3639
|
-
qvbrQualityLevelFineTune: smithy_client_1.serializeFloat(input.QvbrQualityLevelFineTune),
|
|
3639
|
+
qvbrQualityLevelFineTune: (0, smithy_client_1.serializeFloat)(input.QvbrQualityLevelFineTune),
|
|
3640
3640
|
}),
|
|
3641
3641
|
};
|
|
3642
3642
|
};
|
|
@@ -3667,7 +3667,7 @@ const serializeAws_restJson1H265Settings = (input, context) => {
|
|
|
3667
3667
|
...(input.GopBReference !== undefined && input.GopBReference !== null && { gopBReference: input.GopBReference }),
|
|
3668
3668
|
...(input.GopClosedCadence !== undefined &&
|
|
3669
3669
|
input.GopClosedCadence !== null && { gopClosedCadence: input.GopClosedCadence }),
|
|
3670
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
3670
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
3671
3671
|
...(input.GopSizeUnits !== undefined && input.GopSizeUnits !== null && { gopSizeUnits: input.GopSizeUnits }),
|
|
3672
3672
|
...(input.HrdBufferInitialFillPercentage !== undefined &&
|
|
3673
3673
|
input.HrdBufferInitialFillPercentage !== null && {
|
|
@@ -3836,7 +3836,7 @@ const serializeAws_restJson1HlsGroupSettings = (input, context) => {
|
|
|
3836
3836
|
...(input.ManifestDurationFormat !== undefined &&
|
|
3837
3837
|
input.ManifestDurationFormat !== null && { manifestDurationFormat: input.ManifestDurationFormat }),
|
|
3838
3838
|
...(input.MinFinalSegmentLength !== undefined &&
|
|
3839
|
-
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: smithy_client_1.serializeFloat(input.MinFinalSegmentLength) }),
|
|
3839
|
+
input.MinFinalSegmentLength !== null && { minFinalSegmentLength: (0, smithy_client_1.serializeFloat)(input.MinFinalSegmentLength) }),
|
|
3840
3840
|
...(input.MinSegmentLength !== undefined &&
|
|
3841
3841
|
input.MinSegmentLength !== null && { minSegmentLength: input.MinSegmentLength }),
|
|
3842
3842
|
...(input.OutputSelection !== undefined &&
|
|
@@ -3873,7 +3873,7 @@ const serializeAws_restJson1HlsImageBasedTrickPlaySettings = (input, context) =>
|
|
|
3873
3873
|
...(input.ThumbnailHeight !== undefined &&
|
|
3874
3874
|
input.ThumbnailHeight !== null && { thumbnailHeight: input.ThumbnailHeight }),
|
|
3875
3875
|
...(input.ThumbnailInterval !== undefined &&
|
|
3876
|
-
input.ThumbnailInterval !== null && { thumbnailInterval: smithy_client_1.serializeFloat(input.ThumbnailInterval) }),
|
|
3876
|
+
input.ThumbnailInterval !== null && { thumbnailInterval: (0, smithy_client_1.serializeFloat)(input.ThumbnailInterval) }),
|
|
3877
3877
|
...(input.ThumbnailWidth !== undefined &&
|
|
3878
3878
|
input.ThumbnailWidth !== null && { thumbnailWidth: input.ThumbnailWidth }),
|
|
3879
3879
|
...(input.TileHeight !== undefined && input.TileHeight !== null && { tileHeight: input.TileHeight }),
|
|
@@ -4164,7 +4164,7 @@ const serializeAws_restJson1KantarWatermarkSettings = (input, context) => {
|
|
|
4164
4164
|
...(input.CredentialsSecretName !== undefined &&
|
|
4165
4165
|
input.CredentialsSecretName !== null && { credentialsSecretName: input.CredentialsSecretName }),
|
|
4166
4166
|
...(input.FileOffset !== undefined &&
|
|
4167
|
-
input.FileOffset !== null && { fileOffset: smithy_client_1.serializeFloat(input.FileOffset) }),
|
|
4167
|
+
input.FileOffset !== null && { fileOffset: (0, smithy_client_1.serializeFloat)(input.FileOffset) }),
|
|
4168
4168
|
...(input.KantarLicenseId !== undefined &&
|
|
4169
4169
|
input.KantarLicenseId !== null && { kantarLicenseId: input.KantarLicenseId }),
|
|
4170
4170
|
...(input.KantarServerUrl !== undefined &&
|
|
@@ -4224,14 +4224,14 @@ const serializeAws_restJson1M2tsSettings = (input, context) => {
|
|
|
4224
4224
|
...(input.ForceTsVideoEbpOrder !== undefined &&
|
|
4225
4225
|
input.ForceTsVideoEbpOrder !== null && { forceTsVideoEbpOrder: input.ForceTsVideoEbpOrder }),
|
|
4226
4226
|
...(input.FragmentTime !== undefined &&
|
|
4227
|
-
input.FragmentTime !== null && { fragmentTime: smithy_client_1.serializeFloat(input.FragmentTime) }),
|
|
4227
|
+
input.FragmentTime !== null && { fragmentTime: (0, smithy_client_1.serializeFloat)(input.FragmentTime) }),
|
|
4228
4228
|
...(input.MaxPcrInterval !== undefined &&
|
|
4229
4229
|
input.MaxPcrInterval !== null && { maxPcrInterval: input.MaxPcrInterval }),
|
|
4230
4230
|
...(input.MinEbpInterval !== undefined &&
|
|
4231
4231
|
input.MinEbpInterval !== null && { minEbpInterval: input.MinEbpInterval }),
|
|
4232
4232
|
...(input.NielsenId3 !== undefined && input.NielsenId3 !== null && { nielsenId3: input.NielsenId3 }),
|
|
4233
4233
|
...(input.NullPacketBitrate !== undefined &&
|
|
4234
|
-
input.NullPacketBitrate !== null && { nullPacketBitrate: smithy_client_1.serializeFloat(input.NullPacketBitrate) }),
|
|
4234
|
+
input.NullPacketBitrate !== null && { nullPacketBitrate: (0, smithy_client_1.serializeFloat)(input.NullPacketBitrate) }),
|
|
4235
4235
|
...(input.PatInterval !== undefined && input.PatInterval !== null && { patInterval: input.PatInterval }),
|
|
4236
4236
|
...(input.PcrControl !== undefined && input.PcrControl !== null && { pcrControl: input.PcrControl }),
|
|
4237
4237
|
...(input.PcrPid !== undefined && input.PcrPid !== null && { pcrPid: input.PcrPid }),
|
|
@@ -4250,7 +4250,7 @@ const serializeAws_restJson1M2tsSettings = (input, context) => {
|
|
|
4250
4250
|
...(input.SegmentationStyle !== undefined &&
|
|
4251
4251
|
input.SegmentationStyle !== null && { segmentationStyle: input.SegmentationStyle }),
|
|
4252
4252
|
...(input.SegmentationTime !== undefined &&
|
|
4253
|
-
input.SegmentationTime !== null && { segmentationTime: smithy_client_1.serializeFloat(input.SegmentationTime) }),
|
|
4253
|
+
input.SegmentationTime !== null && { segmentationTime: (0, smithy_client_1.serializeFloat)(input.SegmentationTime) }),
|
|
4254
4254
|
...(input.TimedMetadataPid !== undefined &&
|
|
4255
4255
|
input.TimedMetadataPid !== null && { timedMetadataPid: input.TimedMetadataPid }),
|
|
4256
4256
|
...(input.TransportStreamId !== undefined &&
|
|
@@ -4388,7 +4388,7 @@ const serializeAws_restJson1Mpeg2Settings = (input, context) => {
|
|
|
4388
4388
|
input.FramerateNumerator !== null && { framerateNumerator: input.FramerateNumerator }),
|
|
4389
4389
|
...(input.GopClosedCadence !== undefined &&
|
|
4390
4390
|
input.GopClosedCadence !== null && { gopClosedCadence: input.GopClosedCadence }),
|
|
4391
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
4391
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
4392
4392
|
...(input.GopSizeUnits !== undefined && input.GopSizeUnits !== null && { gopSizeUnits: input.GopSizeUnits }),
|
|
4393
4393
|
...(input.HrdBufferInitialFillPercentage !== undefined &&
|
|
4394
4394
|
input.HrdBufferInitialFillPercentage !== null && {
|
|
@@ -5019,7 +5019,7 @@ const serializeAws_restJson1Vp8Settings = (input, context) => {
|
|
|
5019
5019
|
input.FramerateDenominator !== null && { framerateDenominator: input.FramerateDenominator }),
|
|
5020
5020
|
...(input.FramerateNumerator !== undefined &&
|
|
5021
5021
|
input.FramerateNumerator !== null && { framerateNumerator: input.FramerateNumerator }),
|
|
5022
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
5022
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
5023
5023
|
...(input.HrdBufferSize !== undefined && input.HrdBufferSize !== null && { hrdBufferSize: input.HrdBufferSize }),
|
|
5024
5024
|
...(input.MaxBitrate !== undefined && input.MaxBitrate !== null && { maxBitrate: input.MaxBitrate }),
|
|
5025
5025
|
...(input.ParControl !== undefined && input.ParControl !== null && { parControl: input.ParControl }),
|
|
@@ -5045,7 +5045,7 @@ const serializeAws_restJson1Vp9Settings = (input, context) => {
|
|
|
5045
5045
|
input.FramerateDenominator !== null && { framerateDenominator: input.FramerateDenominator }),
|
|
5046
5046
|
...(input.FramerateNumerator !== undefined &&
|
|
5047
5047
|
input.FramerateNumerator !== null && { framerateNumerator: input.FramerateNumerator }),
|
|
5048
|
-
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: smithy_client_1.serializeFloat(input.GopSize) }),
|
|
5048
|
+
...(input.GopSize !== undefined && input.GopSize !== null && { gopSize: (0, smithy_client_1.serializeFloat)(input.GopSize) }),
|
|
5049
5049
|
...(input.HrdBufferSize !== undefined && input.HrdBufferSize !== null && { hrdBufferSize: input.HrdBufferSize }),
|
|
5050
5050
|
...(input.MaxBitrate !== undefined && input.MaxBitrate !== null && { maxBitrate: input.MaxBitrate }),
|
|
5051
5051
|
...(input.ParControl !== undefined && input.ParControl !== null && { parControl: input.ParControl }),
|
|
@@ -5182,7 +5182,7 @@ const deserializeAws_restJson1__listOf__doubleMinNegative60Max6 = (output, conte
|
|
|
5182
5182
|
if (entry === null) {
|
|
5183
5183
|
return null;
|
|
5184
5184
|
}
|
|
5185
|
-
return smithy_client_1.limitedParseDouble(entry);
|
|
5185
|
+
return (0, smithy_client_1.limitedParseDouble)(entry);
|
|
5186
5186
|
});
|
|
5187
5187
|
return retVal;
|
|
5188
5188
|
};
|
|
@@ -5193,7 +5193,7 @@ const deserializeAws_restJson1__listOf__integerMin1Max2147483647 = (output, cont
|
|
|
5193
5193
|
if (entry === null) {
|
|
5194
5194
|
return null;
|
|
5195
5195
|
}
|
|
5196
|
-
return smithy_client_1.expectInt32(entry);
|
|
5196
|
+
return (0, smithy_client_1.expectInt32)(entry);
|
|
5197
5197
|
});
|
|
5198
5198
|
return retVal;
|
|
5199
5199
|
};
|
|
@@ -5204,7 +5204,7 @@ const deserializeAws_restJson1__listOf__integerMin32Max8182 = (output, context)
|
|
|
5204
5204
|
if (entry === null) {
|
|
5205
5205
|
return null;
|
|
5206
5206
|
}
|
|
5207
|
-
return smithy_client_1.expectInt32(entry);
|
|
5207
|
+
return (0, smithy_client_1.expectInt32)(entry);
|
|
5208
5208
|
});
|
|
5209
5209
|
return retVal;
|
|
5210
5210
|
};
|
|
@@ -5215,7 +5215,7 @@ const deserializeAws_restJson1__listOf__integerMinNegative60Max6 = (output, cont
|
|
|
5215
5215
|
if (entry === null) {
|
|
5216
5216
|
return null;
|
|
5217
5217
|
}
|
|
5218
|
-
return smithy_client_1.expectInt32(entry);
|
|
5218
|
+
return (0, smithy_client_1.expectInt32)(entry);
|
|
5219
5219
|
});
|
|
5220
5220
|
return retVal;
|
|
5221
5221
|
};
|
|
@@ -5226,7 +5226,7 @@ const deserializeAws_restJson1__listOf__string = (output, context) => {
|
|
|
5226
5226
|
if (entry === null) {
|
|
5227
5227
|
return null;
|
|
5228
5228
|
}
|
|
5229
|
-
return smithy_client_1.expectString(entry);
|
|
5229
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5230
5230
|
});
|
|
5231
5231
|
return retVal;
|
|
5232
5232
|
};
|
|
@@ -5237,7 +5237,7 @@ const deserializeAws_restJson1__listOf__stringMin1 = (output, context) => {
|
|
|
5237
5237
|
if (entry === null) {
|
|
5238
5238
|
return null;
|
|
5239
5239
|
}
|
|
5240
|
-
return smithy_client_1.expectString(entry);
|
|
5240
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5241
5241
|
});
|
|
5242
5242
|
return retVal;
|
|
5243
5243
|
};
|
|
@@ -5248,7 +5248,7 @@ const deserializeAws_restJson1__listOf__stringMin36Max36Pattern09aFAF809aFAF409a
|
|
|
5248
5248
|
if (entry === null) {
|
|
5249
5249
|
return null;
|
|
5250
5250
|
}
|
|
5251
|
-
return smithy_client_1.expectString(entry);
|
|
5251
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5252
5252
|
});
|
|
5253
5253
|
return retVal;
|
|
5254
5254
|
};
|
|
@@ -5259,7 +5259,7 @@ const deserializeAws_restJson1__listOf__stringPattern09aFAF809aFAF409aFAF409aFAF
|
|
|
5259
5259
|
if (entry === null) {
|
|
5260
5260
|
return null;
|
|
5261
5261
|
}
|
|
5262
|
-
return smithy_client_1.expectString(entry);
|
|
5262
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5263
5263
|
});
|
|
5264
5264
|
return retVal;
|
|
5265
5265
|
};
|
|
@@ -5270,7 +5270,7 @@ const deserializeAws_restJson1__listOf__stringPatternS3ASSETMAPXml = (output, co
|
|
|
5270
5270
|
if (entry === null) {
|
|
5271
5271
|
return null;
|
|
5272
5272
|
}
|
|
5273
|
-
return smithy_client_1.expectString(entry);
|
|
5273
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5274
5274
|
});
|
|
5275
5275
|
return retVal;
|
|
5276
5276
|
};
|
|
@@ -5358,7 +5358,7 @@ const deserializeAws_restJson1__listOfHlsAdMarkers = (output, context) => {
|
|
|
5358
5358
|
if (entry === null) {
|
|
5359
5359
|
return null;
|
|
5360
5360
|
}
|
|
5361
|
-
return smithy_client_1.expectString(entry);
|
|
5361
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5362
5362
|
});
|
|
5363
5363
|
return retVal;
|
|
5364
5364
|
};
|
|
@@ -5567,7 +5567,7 @@ const deserializeAws_restJson1__listOfTeletextPageType = (output, context) => {
|
|
|
5567
5567
|
if (entry === null) {
|
|
5568
5568
|
return null;
|
|
5569
5569
|
}
|
|
5570
|
-
return smithy_client_1.expectString(entry);
|
|
5570
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
5571
5571
|
});
|
|
5572
5572
|
return retVal;
|
|
5573
5573
|
};
|
|
@@ -5578,7 +5578,7 @@ const deserializeAws_restJson1__mapOf__string = (output, context) => {
|
|
|
5578
5578
|
}
|
|
5579
5579
|
return {
|
|
5580
5580
|
...acc,
|
|
5581
|
-
[key]: smithy_client_1.expectString(value),
|
|
5581
|
+
[key]: (0, smithy_client_1.expectString)(value),
|
|
5582
5582
|
};
|
|
5583
5583
|
}, {});
|
|
5584
5584
|
};
|
|
@@ -5617,53 +5617,53 @@ const deserializeAws_restJson1__mapOfCaptionSelector = (output, context) => {
|
|
|
5617
5617
|
};
|
|
5618
5618
|
const deserializeAws_restJson1AacSettings = (output, context) => {
|
|
5619
5619
|
return {
|
|
5620
|
-
AudioDescriptionBroadcasterMix: smithy_client_1.expectString(output.audioDescriptionBroadcasterMix),
|
|
5621
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
5622
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
5623
|
-
CodingMode: smithy_client_1.expectString(output.codingMode),
|
|
5624
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
5625
|
-
RawFormat: smithy_client_1.expectString(output.rawFormat),
|
|
5626
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
5627
|
-
Specification: smithy_client_1.expectString(output.specification),
|
|
5628
|
-
VbrQuality: smithy_client_1.expectString(output.vbrQuality),
|
|
5620
|
+
AudioDescriptionBroadcasterMix: (0, smithy_client_1.expectString)(output.audioDescriptionBroadcasterMix),
|
|
5621
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
5622
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
5623
|
+
CodingMode: (0, smithy_client_1.expectString)(output.codingMode),
|
|
5624
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
5625
|
+
RawFormat: (0, smithy_client_1.expectString)(output.rawFormat),
|
|
5626
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
5627
|
+
Specification: (0, smithy_client_1.expectString)(output.specification),
|
|
5628
|
+
VbrQuality: (0, smithy_client_1.expectString)(output.vbrQuality),
|
|
5629
5629
|
};
|
|
5630
5630
|
};
|
|
5631
5631
|
const deserializeAws_restJson1Ac3Settings = (output, context) => {
|
|
5632
5632
|
return {
|
|
5633
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
5634
|
-
BitstreamMode: smithy_client_1.expectString(output.bitstreamMode),
|
|
5635
|
-
CodingMode: smithy_client_1.expectString(output.codingMode),
|
|
5636
|
-
Dialnorm: smithy_client_1.expectInt32(output.dialnorm),
|
|
5637
|
-
DynamicRangeCompressionLine: smithy_client_1.expectString(output.dynamicRangeCompressionLine),
|
|
5638
|
-
DynamicRangeCompressionProfile: smithy_client_1.expectString(output.dynamicRangeCompressionProfile),
|
|
5639
|
-
DynamicRangeCompressionRf: smithy_client_1.expectString(output.dynamicRangeCompressionRf),
|
|
5640
|
-
LfeFilter: smithy_client_1.expectString(output.lfeFilter),
|
|
5641
|
-
MetadataControl: smithy_client_1.expectString(output.metadataControl),
|
|
5642
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
5633
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
5634
|
+
BitstreamMode: (0, smithy_client_1.expectString)(output.bitstreamMode),
|
|
5635
|
+
CodingMode: (0, smithy_client_1.expectString)(output.codingMode),
|
|
5636
|
+
Dialnorm: (0, smithy_client_1.expectInt32)(output.dialnorm),
|
|
5637
|
+
DynamicRangeCompressionLine: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionLine),
|
|
5638
|
+
DynamicRangeCompressionProfile: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionProfile),
|
|
5639
|
+
DynamicRangeCompressionRf: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionRf),
|
|
5640
|
+
LfeFilter: (0, smithy_client_1.expectString)(output.lfeFilter),
|
|
5641
|
+
MetadataControl: (0, smithy_client_1.expectString)(output.metadataControl),
|
|
5642
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
5643
5643
|
};
|
|
5644
5644
|
};
|
|
5645
5645
|
const deserializeAws_restJson1AccelerationSettings = (output, context) => {
|
|
5646
5646
|
return {
|
|
5647
|
-
Mode: smithy_client_1.expectString(output.mode),
|
|
5647
|
+
Mode: (0, smithy_client_1.expectString)(output.mode),
|
|
5648
5648
|
};
|
|
5649
5649
|
};
|
|
5650
5650
|
const deserializeAws_restJson1AiffSettings = (output, context) => {
|
|
5651
5651
|
return {
|
|
5652
|
-
BitDepth: smithy_client_1.expectInt32(output.bitDepth),
|
|
5653
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
5654
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
5652
|
+
BitDepth: (0, smithy_client_1.expectInt32)(output.bitDepth),
|
|
5653
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
5654
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
5655
5655
|
};
|
|
5656
5656
|
};
|
|
5657
5657
|
const deserializeAws_restJson1AncillarySourceSettings = (output, context) => {
|
|
5658
5658
|
return {
|
|
5659
|
-
Convert608To708: smithy_client_1.expectString(output.convert608To708),
|
|
5660
|
-
SourceAncillaryChannelNumber: smithy_client_1.expectInt32(output.sourceAncillaryChannelNumber),
|
|
5661
|
-
TerminateCaptions: smithy_client_1.expectString(output.terminateCaptions),
|
|
5659
|
+
Convert608To708: (0, smithy_client_1.expectString)(output.convert608To708),
|
|
5660
|
+
SourceAncillaryChannelNumber: (0, smithy_client_1.expectInt32)(output.sourceAncillaryChannelNumber),
|
|
5661
|
+
TerminateCaptions: (0, smithy_client_1.expectString)(output.terminateCaptions),
|
|
5662
5662
|
};
|
|
5663
5663
|
};
|
|
5664
5664
|
const deserializeAws_restJson1AudioChannelTaggingSettings = (output, context) => {
|
|
5665
5665
|
return {
|
|
5666
|
-
ChannelTag: smithy_client_1.expectString(output.channelTag),
|
|
5666
|
+
ChannelTag: (0, smithy_client_1.expectString)(output.channelTag),
|
|
5667
5667
|
};
|
|
5668
5668
|
};
|
|
5669
5669
|
const deserializeAws_restJson1AudioCodecSettings = (output, context) => {
|
|
@@ -5677,7 +5677,7 @@ const deserializeAws_restJson1AudioCodecSettings = (output, context) => {
|
|
|
5677
5677
|
AiffSettings: output.aiffSettings !== undefined && output.aiffSettings !== null
|
|
5678
5678
|
? deserializeAws_restJson1AiffSettings(output.aiffSettings, context)
|
|
5679
5679
|
: undefined,
|
|
5680
|
-
Codec: smithy_client_1.expectString(output.codec),
|
|
5680
|
+
Codec: (0, smithy_client_1.expectString)(output.codec),
|
|
5681
5681
|
Eac3AtmosSettings: output.eac3AtmosSettings !== undefined && output.eac3AtmosSettings !== null
|
|
5682
5682
|
? deserializeAws_restJson1Eac3AtmosSettings(output.eac3AtmosSettings, context)
|
|
5683
5683
|
: undefined,
|
|
@@ -5709,49 +5709,49 @@ const deserializeAws_restJson1AudioDescription = (output, context) => {
|
|
|
5709
5709
|
AudioNormalizationSettings: output.audioNormalizationSettings !== undefined && output.audioNormalizationSettings !== null
|
|
5710
5710
|
? deserializeAws_restJson1AudioNormalizationSettings(output.audioNormalizationSettings, context)
|
|
5711
5711
|
: undefined,
|
|
5712
|
-
AudioSourceName: smithy_client_1.expectString(output.audioSourceName),
|
|
5713
|
-
AudioType: smithy_client_1.expectInt32(output.audioType),
|
|
5714
|
-
AudioTypeControl: smithy_client_1.expectString(output.audioTypeControl),
|
|
5712
|
+
AudioSourceName: (0, smithy_client_1.expectString)(output.audioSourceName),
|
|
5713
|
+
AudioType: (0, smithy_client_1.expectInt32)(output.audioType),
|
|
5714
|
+
AudioTypeControl: (0, smithy_client_1.expectString)(output.audioTypeControl),
|
|
5715
5715
|
CodecSettings: output.codecSettings !== undefined && output.codecSettings !== null
|
|
5716
5716
|
? deserializeAws_restJson1AudioCodecSettings(output.codecSettings, context)
|
|
5717
5717
|
: undefined,
|
|
5718
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
5719
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
5720
|
-
LanguageCodeControl: smithy_client_1.expectString(output.languageCodeControl),
|
|
5718
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5719
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
5720
|
+
LanguageCodeControl: (0, smithy_client_1.expectString)(output.languageCodeControl),
|
|
5721
5721
|
RemixSettings: output.remixSettings !== undefined && output.remixSettings !== null
|
|
5722
5722
|
? deserializeAws_restJson1RemixSettings(output.remixSettings, context)
|
|
5723
5723
|
: undefined,
|
|
5724
|
-
StreamName: smithy_client_1.expectString(output.streamName),
|
|
5724
|
+
StreamName: (0, smithy_client_1.expectString)(output.streamName),
|
|
5725
5725
|
};
|
|
5726
5726
|
};
|
|
5727
5727
|
const deserializeAws_restJson1AudioNormalizationSettings = (output, context) => {
|
|
5728
5728
|
return {
|
|
5729
|
-
Algorithm: smithy_client_1.expectString(output.algorithm),
|
|
5730
|
-
AlgorithmControl: smithy_client_1.expectString(output.algorithmControl),
|
|
5731
|
-
CorrectionGateLevel: smithy_client_1.expectInt32(output.correctionGateLevel),
|
|
5732
|
-
LoudnessLogging: smithy_client_1.expectString(output.loudnessLogging),
|
|
5733
|
-
PeakCalculation: smithy_client_1.expectString(output.peakCalculation),
|
|
5734
|
-
TargetLkfs: smithy_client_1.limitedParseDouble(output.targetLkfs),
|
|
5729
|
+
Algorithm: (0, smithy_client_1.expectString)(output.algorithm),
|
|
5730
|
+
AlgorithmControl: (0, smithy_client_1.expectString)(output.algorithmControl),
|
|
5731
|
+
CorrectionGateLevel: (0, smithy_client_1.expectInt32)(output.correctionGateLevel),
|
|
5732
|
+
LoudnessLogging: (0, smithy_client_1.expectString)(output.loudnessLogging),
|
|
5733
|
+
PeakCalculation: (0, smithy_client_1.expectString)(output.peakCalculation),
|
|
5734
|
+
TargetLkfs: (0, smithy_client_1.limitedParseDouble)(output.targetLkfs),
|
|
5735
5735
|
};
|
|
5736
5736
|
};
|
|
5737
5737
|
const deserializeAws_restJson1AudioSelector = (output, context) => {
|
|
5738
5738
|
return {
|
|
5739
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
5740
|
-
DefaultSelection: smithy_client_1.expectString(output.defaultSelection),
|
|
5741
|
-
ExternalAudioFileInput: smithy_client_1.expectString(output.externalAudioFileInput),
|
|
5739
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5740
|
+
DefaultSelection: (0, smithy_client_1.expectString)(output.defaultSelection),
|
|
5741
|
+
ExternalAudioFileInput: (0, smithy_client_1.expectString)(output.externalAudioFileInput),
|
|
5742
5742
|
HlsRenditionGroupSettings: output.hlsRenditionGroupSettings !== undefined && output.hlsRenditionGroupSettings !== null
|
|
5743
5743
|
? deserializeAws_restJson1HlsRenditionGroupSettings(output.hlsRenditionGroupSettings, context)
|
|
5744
5744
|
: undefined,
|
|
5745
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
5746
|
-
Offset: smithy_client_1.expectInt32(output.offset),
|
|
5745
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
5746
|
+
Offset: (0, smithy_client_1.expectInt32)(output.offset),
|
|
5747
5747
|
Pids: output.pids !== undefined && output.pids !== null
|
|
5748
5748
|
? deserializeAws_restJson1__listOf__integerMin1Max2147483647(output.pids, context)
|
|
5749
5749
|
: undefined,
|
|
5750
|
-
ProgramSelection: smithy_client_1.expectInt32(output.programSelection),
|
|
5750
|
+
ProgramSelection: (0, smithy_client_1.expectInt32)(output.programSelection),
|
|
5751
5751
|
RemixSettings: output.remixSettings !== undefined && output.remixSettings !== null
|
|
5752
5752
|
? deserializeAws_restJson1RemixSettings(output.remixSettings, context)
|
|
5753
5753
|
: undefined,
|
|
5754
|
-
SelectorType: smithy_client_1.expectString(output.selectorType),
|
|
5754
|
+
SelectorType: (0, smithy_client_1.expectString)(output.selectorType),
|
|
5755
5755
|
Tracks: output.tracks !== undefined && output.tracks !== null
|
|
5756
5756
|
? deserializeAws_restJson1__listOf__integerMin1Max2147483647(output.tracks, context)
|
|
5757
5757
|
: undefined,
|
|
@@ -5766,9 +5766,9 @@ const deserializeAws_restJson1AudioSelectorGroup = (output, context) => {
|
|
|
5766
5766
|
};
|
|
5767
5767
|
const deserializeAws_restJson1AutomatedAbrSettings = (output, context) => {
|
|
5768
5768
|
return {
|
|
5769
|
-
MaxAbrBitrate: smithy_client_1.expectInt32(output.maxAbrBitrate),
|
|
5770
|
-
MaxRenditions: smithy_client_1.expectInt32(output.maxRenditions),
|
|
5771
|
-
MinAbrBitrate: smithy_client_1.expectInt32(output.minAbrBitrate),
|
|
5769
|
+
MaxAbrBitrate: (0, smithy_client_1.expectInt32)(output.maxAbrBitrate),
|
|
5770
|
+
MaxRenditions: (0, smithy_client_1.expectInt32)(output.maxRenditions),
|
|
5771
|
+
MinAbrBitrate: (0, smithy_client_1.expectInt32)(output.minAbrBitrate),
|
|
5772
5772
|
};
|
|
5773
5773
|
};
|
|
5774
5774
|
const deserializeAws_restJson1AutomatedEncodingSettings = (output, context) => {
|
|
@@ -5780,99 +5780,99 @@ const deserializeAws_restJson1AutomatedEncodingSettings = (output, context) => {
|
|
|
5780
5780
|
};
|
|
5781
5781
|
const deserializeAws_restJson1Av1QvbrSettings = (output, context) => {
|
|
5782
5782
|
return {
|
|
5783
|
-
QvbrQualityLevel: smithy_client_1.expectInt32(output.qvbrQualityLevel),
|
|
5784
|
-
QvbrQualityLevelFineTune: smithy_client_1.limitedParseDouble(output.qvbrQualityLevelFineTune),
|
|
5783
|
+
QvbrQualityLevel: (0, smithy_client_1.expectInt32)(output.qvbrQualityLevel),
|
|
5784
|
+
QvbrQualityLevelFineTune: (0, smithy_client_1.limitedParseDouble)(output.qvbrQualityLevelFineTune),
|
|
5785
5785
|
};
|
|
5786
5786
|
};
|
|
5787
5787
|
const deserializeAws_restJson1Av1Settings = (output, context) => {
|
|
5788
5788
|
return {
|
|
5789
|
-
AdaptiveQuantization: smithy_client_1.expectString(output.adaptiveQuantization),
|
|
5790
|
-
BitDepth: smithy_client_1.expectString(output.bitDepth),
|
|
5791
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
5792
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
5793
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
5794
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
5795
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
5796
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
5797
|
-
NumberBFramesBetweenReferenceFrames: smithy_client_1.expectInt32(output.numberBFramesBetweenReferenceFrames),
|
|
5789
|
+
AdaptiveQuantization: (0, smithy_client_1.expectString)(output.adaptiveQuantization),
|
|
5790
|
+
BitDepth: (0, smithy_client_1.expectString)(output.bitDepth),
|
|
5791
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
5792
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
5793
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
5794
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
5795
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
5796
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
5797
|
+
NumberBFramesBetweenReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberBFramesBetweenReferenceFrames),
|
|
5798
5798
|
QvbrSettings: output.qvbrSettings !== undefined && output.qvbrSettings !== null
|
|
5799
5799
|
? deserializeAws_restJson1Av1QvbrSettings(output.qvbrSettings, context)
|
|
5800
5800
|
: undefined,
|
|
5801
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
5802
|
-
Slices: smithy_client_1.expectInt32(output.slices),
|
|
5803
|
-
SpatialAdaptiveQuantization: smithy_client_1.expectString(output.spatialAdaptiveQuantization),
|
|
5801
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
5802
|
+
Slices: (0, smithy_client_1.expectInt32)(output.slices),
|
|
5803
|
+
SpatialAdaptiveQuantization: (0, smithy_client_1.expectString)(output.spatialAdaptiveQuantization),
|
|
5804
5804
|
};
|
|
5805
5805
|
};
|
|
5806
5806
|
const deserializeAws_restJson1AvailBlanking = (output, context) => {
|
|
5807
5807
|
return {
|
|
5808
|
-
AvailBlankingImage: smithy_client_1.expectString(output.availBlankingImage),
|
|
5808
|
+
AvailBlankingImage: (0, smithy_client_1.expectString)(output.availBlankingImage),
|
|
5809
5809
|
};
|
|
5810
5810
|
};
|
|
5811
5811
|
const deserializeAws_restJson1AvcIntraSettings = (output, context) => {
|
|
5812
5812
|
return {
|
|
5813
|
-
AvcIntraClass: smithy_client_1.expectString(output.avcIntraClass),
|
|
5813
|
+
AvcIntraClass: (0, smithy_client_1.expectString)(output.avcIntraClass),
|
|
5814
5814
|
AvcIntraUhdSettings: output.avcIntraUhdSettings !== undefined && output.avcIntraUhdSettings !== null
|
|
5815
5815
|
? deserializeAws_restJson1AvcIntraUhdSettings(output.avcIntraUhdSettings, context)
|
|
5816
5816
|
: undefined,
|
|
5817
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
5818
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
5819
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
5820
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
5821
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
5822
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
5823
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
5824
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
5817
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
5818
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
5819
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
5820
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
5821
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
5822
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
5823
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
5824
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
5825
5825
|
};
|
|
5826
5826
|
};
|
|
5827
5827
|
const deserializeAws_restJson1AvcIntraUhdSettings = (output, context) => {
|
|
5828
5828
|
return {
|
|
5829
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
5829
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
5830
5830
|
};
|
|
5831
5831
|
};
|
|
5832
5832
|
const deserializeAws_restJson1BurninDestinationSettings = (output, context) => {
|
|
5833
5833
|
return {
|
|
5834
|
-
Alignment: smithy_client_1.expectString(output.alignment),
|
|
5835
|
-
ApplyFontColor: smithy_client_1.expectString(output.applyFontColor),
|
|
5836
|
-
BackgroundColor: smithy_client_1.expectString(output.backgroundColor),
|
|
5837
|
-
BackgroundOpacity: smithy_client_1.expectInt32(output.backgroundOpacity),
|
|
5838
|
-
FallbackFont: smithy_client_1.expectString(output.fallbackFont),
|
|
5839
|
-
FontColor: smithy_client_1.expectString(output.fontColor),
|
|
5840
|
-
FontOpacity: smithy_client_1.expectInt32(output.fontOpacity),
|
|
5841
|
-
FontResolution: smithy_client_1.expectInt32(output.fontResolution),
|
|
5842
|
-
FontScript: smithy_client_1.expectString(output.fontScript),
|
|
5843
|
-
FontSize: smithy_client_1.expectInt32(output.fontSize),
|
|
5844
|
-
HexFontColor: smithy_client_1.expectString(output.hexFontColor),
|
|
5845
|
-
OutlineColor: smithy_client_1.expectString(output.outlineColor),
|
|
5846
|
-
OutlineSize: smithy_client_1.expectInt32(output.outlineSize),
|
|
5847
|
-
ShadowColor: smithy_client_1.expectString(output.shadowColor),
|
|
5848
|
-
ShadowOpacity: smithy_client_1.expectInt32(output.shadowOpacity),
|
|
5849
|
-
ShadowXOffset: smithy_client_1.expectInt32(output.shadowXOffset),
|
|
5850
|
-
ShadowYOffset: smithy_client_1.expectInt32(output.shadowYOffset),
|
|
5851
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
5852
|
-
TeletextSpacing: smithy_client_1.expectString(output.teletextSpacing),
|
|
5853
|
-
XPosition: smithy_client_1.expectInt32(output.xPosition),
|
|
5854
|
-
YPosition: smithy_client_1.expectInt32(output.yPosition),
|
|
5834
|
+
Alignment: (0, smithy_client_1.expectString)(output.alignment),
|
|
5835
|
+
ApplyFontColor: (0, smithy_client_1.expectString)(output.applyFontColor),
|
|
5836
|
+
BackgroundColor: (0, smithy_client_1.expectString)(output.backgroundColor),
|
|
5837
|
+
BackgroundOpacity: (0, smithy_client_1.expectInt32)(output.backgroundOpacity),
|
|
5838
|
+
FallbackFont: (0, smithy_client_1.expectString)(output.fallbackFont),
|
|
5839
|
+
FontColor: (0, smithy_client_1.expectString)(output.fontColor),
|
|
5840
|
+
FontOpacity: (0, smithy_client_1.expectInt32)(output.fontOpacity),
|
|
5841
|
+
FontResolution: (0, smithy_client_1.expectInt32)(output.fontResolution),
|
|
5842
|
+
FontScript: (0, smithy_client_1.expectString)(output.fontScript),
|
|
5843
|
+
FontSize: (0, smithy_client_1.expectInt32)(output.fontSize),
|
|
5844
|
+
HexFontColor: (0, smithy_client_1.expectString)(output.hexFontColor),
|
|
5845
|
+
OutlineColor: (0, smithy_client_1.expectString)(output.outlineColor),
|
|
5846
|
+
OutlineSize: (0, smithy_client_1.expectInt32)(output.outlineSize),
|
|
5847
|
+
ShadowColor: (0, smithy_client_1.expectString)(output.shadowColor),
|
|
5848
|
+
ShadowOpacity: (0, smithy_client_1.expectInt32)(output.shadowOpacity),
|
|
5849
|
+
ShadowXOffset: (0, smithy_client_1.expectInt32)(output.shadowXOffset),
|
|
5850
|
+
ShadowYOffset: (0, smithy_client_1.expectInt32)(output.shadowYOffset),
|
|
5851
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
5852
|
+
TeletextSpacing: (0, smithy_client_1.expectString)(output.teletextSpacing),
|
|
5853
|
+
XPosition: (0, smithy_client_1.expectInt32)(output.xPosition),
|
|
5854
|
+
YPosition: (0, smithy_client_1.expectInt32)(output.yPosition),
|
|
5855
5855
|
};
|
|
5856
5856
|
};
|
|
5857
5857
|
const deserializeAws_restJson1CaptionDescription = (output, context) => {
|
|
5858
5858
|
return {
|
|
5859
|
-
CaptionSelectorName: smithy_client_1.expectString(output.captionSelectorName),
|
|
5860
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
5859
|
+
CaptionSelectorName: (0, smithy_client_1.expectString)(output.captionSelectorName),
|
|
5860
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5861
5861
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
5862
5862
|
? deserializeAws_restJson1CaptionDestinationSettings(output.destinationSettings, context)
|
|
5863
5863
|
: undefined,
|
|
5864
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
5865
|
-
LanguageDescription: smithy_client_1.expectString(output.languageDescription),
|
|
5864
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
5865
|
+
LanguageDescription: (0, smithy_client_1.expectString)(output.languageDescription),
|
|
5866
5866
|
};
|
|
5867
5867
|
};
|
|
5868
5868
|
const deserializeAws_restJson1CaptionDescriptionPreset = (output, context) => {
|
|
5869
5869
|
return {
|
|
5870
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
5870
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5871
5871
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
5872
5872
|
? deserializeAws_restJson1CaptionDestinationSettings(output.destinationSettings, context)
|
|
5873
5873
|
: undefined,
|
|
5874
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
5875
|
-
LanguageDescription: smithy_client_1.expectString(output.languageDescription),
|
|
5874
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
5875
|
+
LanguageDescription: (0, smithy_client_1.expectString)(output.languageDescription),
|
|
5876
5876
|
};
|
|
5877
5877
|
};
|
|
5878
5878
|
const deserializeAws_restJson1CaptionDestinationSettings = (output, context) => {
|
|
@@ -5880,7 +5880,7 @@ const deserializeAws_restJson1CaptionDestinationSettings = (output, context) =>
|
|
|
5880
5880
|
BurninDestinationSettings: output.burninDestinationSettings !== undefined && output.burninDestinationSettings !== null
|
|
5881
5881
|
? deserializeAws_restJson1BurninDestinationSettings(output.burninDestinationSettings, context)
|
|
5882
5882
|
: undefined,
|
|
5883
|
-
DestinationType: smithy_client_1.expectString(output.destinationType),
|
|
5883
|
+
DestinationType: (0, smithy_client_1.expectString)(output.destinationType),
|
|
5884
5884
|
DvbSubDestinationSettings: output.dvbSubDestinationSettings !== undefined && output.dvbSubDestinationSettings !== null
|
|
5885
5885
|
? deserializeAws_restJson1DvbSubDestinationSettings(output.dvbSubDestinationSettings, context)
|
|
5886
5886
|
: undefined,
|
|
@@ -5909,8 +5909,8 @@ const deserializeAws_restJson1CaptionDestinationSettings = (output, context) =>
|
|
|
5909
5909
|
};
|
|
5910
5910
|
const deserializeAws_restJson1CaptionSelector = (output, context) => {
|
|
5911
5911
|
return {
|
|
5912
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
5913
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
5912
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5913
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
5914
5914
|
SourceSettings: output.sourceSettings !== undefined && output.sourceSettings !== null
|
|
5915
5915
|
? deserializeAws_restJson1CaptionSourceSettings(output.sourceSettings, context)
|
|
5916
5916
|
: undefined,
|
|
@@ -5918,8 +5918,8 @@ const deserializeAws_restJson1CaptionSelector = (output, context) => {
|
|
|
5918
5918
|
};
|
|
5919
5919
|
const deserializeAws_restJson1CaptionSourceFramerate = (output, context) => {
|
|
5920
5920
|
return {
|
|
5921
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
5922
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
5921
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
5922
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
5923
5923
|
};
|
|
5924
5924
|
};
|
|
5925
5925
|
const deserializeAws_restJson1CaptionSourceSettings = (output, context) => {
|
|
@@ -5936,7 +5936,7 @@ const deserializeAws_restJson1CaptionSourceSettings = (output, context) => {
|
|
|
5936
5936
|
FileSourceSettings: output.fileSourceSettings !== undefined && output.fileSourceSettings !== null
|
|
5937
5937
|
? deserializeAws_restJson1FileSourceSettings(output.fileSourceSettings, context)
|
|
5938
5938
|
: undefined,
|
|
5939
|
-
SourceType: smithy_client_1.expectString(output.sourceType),
|
|
5939
|
+
SourceType: (0, smithy_client_1.expectString)(output.sourceType),
|
|
5940
5940
|
TeletextSourceSettings: output.teletextSourceSettings !== undefined && output.teletextSourceSettings !== null
|
|
5941
5941
|
? deserializeAws_restJson1TeletextSourceSettings(output.teletextSourceSettings, context)
|
|
5942
5942
|
: undefined,
|
|
@@ -5957,7 +5957,7 @@ const deserializeAws_restJson1ChannelMapping = (output, context) => {
|
|
|
5957
5957
|
};
|
|
5958
5958
|
const deserializeAws_restJson1CmafAdditionalManifest = (output, context) => {
|
|
5959
5959
|
return {
|
|
5960
|
-
ManifestNameModifier: smithy_client_1.expectString(output.manifestNameModifier),
|
|
5960
|
+
ManifestNameModifier: (0, smithy_client_1.expectString)(output.manifestNameModifier),
|
|
5961
5961
|
SelectedOutputs: output.selectedOutputs !== undefined && output.selectedOutputs !== null
|
|
5962
5962
|
? deserializeAws_restJson1__listOf__stringMin1(output.selectedOutputs, context)
|
|
5963
5963
|
: undefined,
|
|
@@ -5965,16 +5965,16 @@ const deserializeAws_restJson1CmafAdditionalManifest = (output, context) => {
|
|
|
5965
5965
|
};
|
|
5966
5966
|
const deserializeAws_restJson1CmafEncryptionSettings = (output, context) => {
|
|
5967
5967
|
return {
|
|
5968
|
-
ConstantInitializationVector: smithy_client_1.expectString(output.constantInitializationVector),
|
|
5969
|
-
EncryptionMethod: smithy_client_1.expectString(output.encryptionMethod),
|
|
5970
|
-
InitializationVectorInManifest: smithy_client_1.expectString(output.initializationVectorInManifest),
|
|
5968
|
+
ConstantInitializationVector: (0, smithy_client_1.expectString)(output.constantInitializationVector),
|
|
5969
|
+
EncryptionMethod: (0, smithy_client_1.expectString)(output.encryptionMethod),
|
|
5970
|
+
InitializationVectorInManifest: (0, smithy_client_1.expectString)(output.initializationVectorInManifest),
|
|
5971
5971
|
SpekeKeyProvider: output.spekeKeyProvider !== undefined && output.spekeKeyProvider !== null
|
|
5972
5972
|
? deserializeAws_restJson1SpekeKeyProviderCmaf(output.spekeKeyProvider, context)
|
|
5973
5973
|
: undefined,
|
|
5974
5974
|
StaticKeyProvider: output.staticKeyProvider !== undefined && output.staticKeyProvider !== null
|
|
5975
5975
|
? deserializeAws_restJson1StaticKeyProvider(output.staticKeyProvider, context)
|
|
5976
5976
|
: undefined,
|
|
5977
|
-
Type: smithy_client_1.expectString(output.type),
|
|
5977
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
5978
5978
|
};
|
|
5979
5979
|
};
|
|
5980
5980
|
const deserializeAws_restJson1CmafGroupSettings = (output, context) => {
|
|
@@ -5982,71 +5982,71 @@ const deserializeAws_restJson1CmafGroupSettings = (output, context) => {
|
|
|
5982
5982
|
AdditionalManifests: output.additionalManifests !== undefined && output.additionalManifests !== null
|
|
5983
5983
|
? deserializeAws_restJson1__listOfCmafAdditionalManifest(output.additionalManifests, context)
|
|
5984
5984
|
: undefined,
|
|
5985
|
-
BaseUrl: smithy_client_1.expectString(output.baseUrl),
|
|
5986
|
-
ClientCache: smithy_client_1.expectString(output.clientCache),
|
|
5987
|
-
CodecSpecification: smithy_client_1.expectString(output.codecSpecification),
|
|
5988
|
-
Destination: smithy_client_1.expectString(output.destination),
|
|
5985
|
+
BaseUrl: (0, smithy_client_1.expectString)(output.baseUrl),
|
|
5986
|
+
ClientCache: (0, smithy_client_1.expectString)(output.clientCache),
|
|
5987
|
+
CodecSpecification: (0, smithy_client_1.expectString)(output.codecSpecification),
|
|
5988
|
+
Destination: (0, smithy_client_1.expectString)(output.destination),
|
|
5989
5989
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
5990
5990
|
? deserializeAws_restJson1DestinationSettings(output.destinationSettings, context)
|
|
5991
5991
|
: undefined,
|
|
5992
5992
|
Encryption: output.encryption !== undefined && output.encryption !== null
|
|
5993
5993
|
? deserializeAws_restJson1CmafEncryptionSettings(output.encryption, context)
|
|
5994
5994
|
: undefined,
|
|
5995
|
-
FragmentLength: smithy_client_1.expectInt32(output.fragmentLength),
|
|
5996
|
-
ImageBasedTrickPlay: smithy_client_1.expectString(output.imageBasedTrickPlay),
|
|
5995
|
+
FragmentLength: (0, smithy_client_1.expectInt32)(output.fragmentLength),
|
|
5996
|
+
ImageBasedTrickPlay: (0, smithy_client_1.expectString)(output.imageBasedTrickPlay),
|
|
5997
5997
|
ImageBasedTrickPlaySettings: output.imageBasedTrickPlaySettings !== undefined && output.imageBasedTrickPlaySettings !== null
|
|
5998
5998
|
? deserializeAws_restJson1CmafImageBasedTrickPlaySettings(output.imageBasedTrickPlaySettings, context)
|
|
5999
5999
|
: undefined,
|
|
6000
|
-
ManifestCompression: smithy_client_1.expectString(output.manifestCompression),
|
|
6001
|
-
ManifestDurationFormat: smithy_client_1.expectString(output.manifestDurationFormat),
|
|
6002
|
-
MinBufferTime: smithy_client_1.expectInt32(output.minBufferTime),
|
|
6003
|
-
MinFinalSegmentLength: smithy_client_1.limitedParseDouble(output.minFinalSegmentLength),
|
|
6004
|
-
MpdProfile: smithy_client_1.expectString(output.mpdProfile),
|
|
6005
|
-
PtsOffsetHandlingForBFrames: smithy_client_1.expectString(output.ptsOffsetHandlingForBFrames),
|
|
6006
|
-
SegmentControl: smithy_client_1.expectString(output.segmentControl),
|
|
6007
|
-
SegmentLength: smithy_client_1.expectInt32(output.segmentLength),
|
|
6008
|
-
SegmentLengthControl: smithy_client_1.expectString(output.segmentLengthControl),
|
|
6009
|
-
StreamInfResolution: smithy_client_1.expectString(output.streamInfResolution),
|
|
6010
|
-
TargetDurationCompatibilityMode: smithy_client_1.expectString(output.targetDurationCompatibilityMode),
|
|
6011
|
-
WriteDashManifest: smithy_client_1.expectString(output.writeDashManifest),
|
|
6012
|
-
WriteHlsManifest: smithy_client_1.expectString(output.writeHlsManifest),
|
|
6013
|
-
WriteSegmentTimelineInRepresentation: smithy_client_1.expectString(output.writeSegmentTimelineInRepresentation),
|
|
6000
|
+
ManifestCompression: (0, smithy_client_1.expectString)(output.manifestCompression),
|
|
6001
|
+
ManifestDurationFormat: (0, smithy_client_1.expectString)(output.manifestDurationFormat),
|
|
6002
|
+
MinBufferTime: (0, smithy_client_1.expectInt32)(output.minBufferTime),
|
|
6003
|
+
MinFinalSegmentLength: (0, smithy_client_1.limitedParseDouble)(output.minFinalSegmentLength),
|
|
6004
|
+
MpdProfile: (0, smithy_client_1.expectString)(output.mpdProfile),
|
|
6005
|
+
PtsOffsetHandlingForBFrames: (0, smithy_client_1.expectString)(output.ptsOffsetHandlingForBFrames),
|
|
6006
|
+
SegmentControl: (0, smithy_client_1.expectString)(output.segmentControl),
|
|
6007
|
+
SegmentLength: (0, smithy_client_1.expectInt32)(output.segmentLength),
|
|
6008
|
+
SegmentLengthControl: (0, smithy_client_1.expectString)(output.segmentLengthControl),
|
|
6009
|
+
StreamInfResolution: (0, smithy_client_1.expectString)(output.streamInfResolution),
|
|
6010
|
+
TargetDurationCompatibilityMode: (0, smithy_client_1.expectString)(output.targetDurationCompatibilityMode),
|
|
6011
|
+
WriteDashManifest: (0, smithy_client_1.expectString)(output.writeDashManifest),
|
|
6012
|
+
WriteHlsManifest: (0, smithy_client_1.expectString)(output.writeHlsManifest),
|
|
6013
|
+
WriteSegmentTimelineInRepresentation: (0, smithy_client_1.expectString)(output.writeSegmentTimelineInRepresentation),
|
|
6014
6014
|
};
|
|
6015
6015
|
};
|
|
6016
6016
|
const deserializeAws_restJson1CmafImageBasedTrickPlaySettings = (output, context) => {
|
|
6017
6017
|
return {
|
|
6018
|
-
IntervalCadence: smithy_client_1.expectString(output.intervalCadence),
|
|
6019
|
-
ThumbnailHeight: smithy_client_1.expectInt32(output.thumbnailHeight),
|
|
6020
|
-
ThumbnailInterval: smithy_client_1.limitedParseDouble(output.thumbnailInterval),
|
|
6021
|
-
ThumbnailWidth: smithy_client_1.expectInt32(output.thumbnailWidth),
|
|
6022
|
-
TileHeight: smithy_client_1.expectInt32(output.tileHeight),
|
|
6023
|
-
TileWidth: smithy_client_1.expectInt32(output.tileWidth),
|
|
6018
|
+
IntervalCadence: (0, smithy_client_1.expectString)(output.intervalCadence),
|
|
6019
|
+
ThumbnailHeight: (0, smithy_client_1.expectInt32)(output.thumbnailHeight),
|
|
6020
|
+
ThumbnailInterval: (0, smithy_client_1.limitedParseDouble)(output.thumbnailInterval),
|
|
6021
|
+
ThumbnailWidth: (0, smithy_client_1.expectInt32)(output.thumbnailWidth),
|
|
6022
|
+
TileHeight: (0, smithy_client_1.expectInt32)(output.tileHeight),
|
|
6023
|
+
TileWidth: (0, smithy_client_1.expectInt32)(output.tileWidth),
|
|
6024
6024
|
};
|
|
6025
6025
|
};
|
|
6026
6026
|
const deserializeAws_restJson1CmfcSettings = (output, context) => {
|
|
6027
6027
|
return {
|
|
6028
|
-
AudioDuration: smithy_client_1.expectString(output.audioDuration),
|
|
6029
|
-
AudioGroupId: smithy_client_1.expectString(output.audioGroupId),
|
|
6030
|
-
AudioRenditionSets: smithy_client_1.expectString(output.audioRenditionSets),
|
|
6031
|
-
AudioTrackType: smithy_client_1.expectString(output.audioTrackType),
|
|
6032
|
-
DescriptiveVideoServiceFlag: smithy_client_1.expectString(output.descriptiveVideoServiceFlag),
|
|
6033
|
-
IFrameOnlyManifest: smithy_client_1.expectString(output.iFrameOnlyManifest),
|
|
6034
|
-
Scte35Esam: smithy_client_1.expectString(output.scte35Esam),
|
|
6035
|
-
Scte35Source: smithy_client_1.expectString(output.scte35Source),
|
|
6036
|
-
TimedMetadata: smithy_client_1.expectString(output.timedMetadata),
|
|
6028
|
+
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
6029
|
+
AudioGroupId: (0, smithy_client_1.expectString)(output.audioGroupId),
|
|
6030
|
+
AudioRenditionSets: (0, smithy_client_1.expectString)(output.audioRenditionSets),
|
|
6031
|
+
AudioTrackType: (0, smithy_client_1.expectString)(output.audioTrackType),
|
|
6032
|
+
DescriptiveVideoServiceFlag: (0, smithy_client_1.expectString)(output.descriptiveVideoServiceFlag),
|
|
6033
|
+
IFrameOnlyManifest: (0, smithy_client_1.expectString)(output.iFrameOnlyManifest),
|
|
6034
|
+
Scte35Esam: (0, smithy_client_1.expectString)(output.scte35Esam),
|
|
6035
|
+
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
6036
|
+
TimedMetadata: (0, smithy_client_1.expectString)(output.timedMetadata),
|
|
6037
6037
|
};
|
|
6038
6038
|
};
|
|
6039
6039
|
const deserializeAws_restJson1ColorCorrector = (output, context) => {
|
|
6040
6040
|
return {
|
|
6041
|
-
Brightness: smithy_client_1.expectInt32(output.brightness),
|
|
6042
|
-
ColorSpaceConversion: smithy_client_1.expectString(output.colorSpaceConversion),
|
|
6043
|
-
Contrast: smithy_client_1.expectInt32(output.contrast),
|
|
6041
|
+
Brightness: (0, smithy_client_1.expectInt32)(output.brightness),
|
|
6042
|
+
ColorSpaceConversion: (0, smithy_client_1.expectString)(output.colorSpaceConversion),
|
|
6043
|
+
Contrast: (0, smithy_client_1.expectInt32)(output.contrast),
|
|
6044
6044
|
Hdr10Metadata: output.hdr10Metadata !== undefined && output.hdr10Metadata !== null
|
|
6045
6045
|
? deserializeAws_restJson1Hdr10Metadata(output.hdr10Metadata, context)
|
|
6046
6046
|
: undefined,
|
|
6047
|
-
Hue: smithy_client_1.expectInt32(output.hue),
|
|
6048
|
-
SampleRangeConversion: smithy_client_1.expectString(output.sampleRangeConversion),
|
|
6049
|
-
Saturation: smithy_client_1.expectInt32(output.saturation),
|
|
6047
|
+
Hue: (0, smithy_client_1.expectInt32)(output.hue),
|
|
6048
|
+
SampleRangeConversion: (0, smithy_client_1.expectString)(output.sampleRangeConversion),
|
|
6049
|
+
Saturation: (0, smithy_client_1.expectInt32)(output.saturation),
|
|
6050
6050
|
};
|
|
6051
6051
|
};
|
|
6052
6052
|
const deserializeAws_restJson1ContainerSettings = (output, context) => {
|
|
@@ -6054,7 +6054,7 @@ const deserializeAws_restJson1ContainerSettings = (output, context) => {
|
|
|
6054
6054
|
CmfcSettings: output.cmfcSettings !== undefined && output.cmfcSettings !== null
|
|
6055
6055
|
? deserializeAws_restJson1CmfcSettings(output.cmfcSettings, context)
|
|
6056
6056
|
: undefined,
|
|
6057
|
-
Container: smithy_client_1.expectString(output.container),
|
|
6057
|
+
Container: (0, smithy_client_1.expectString)(output.container),
|
|
6058
6058
|
F4vSettings: output.f4vSettings !== undefined && output.f4vSettings !== null
|
|
6059
6059
|
? deserializeAws_restJson1F4vSettings(output.f4vSettings, context)
|
|
6060
6060
|
: undefined,
|
|
@@ -6080,7 +6080,7 @@ const deserializeAws_restJson1ContainerSettings = (output, context) => {
|
|
|
6080
6080
|
};
|
|
6081
6081
|
const deserializeAws_restJson1DashAdditionalManifest = (output, context) => {
|
|
6082
6082
|
return {
|
|
6083
|
-
ManifestNameModifier: smithy_client_1.expectString(output.manifestNameModifier),
|
|
6083
|
+
ManifestNameModifier: (0, smithy_client_1.expectString)(output.manifestNameModifier),
|
|
6084
6084
|
SelectedOutputs: output.selectedOutputs !== undefined && output.selectedOutputs !== null
|
|
6085
6085
|
? deserializeAws_restJson1__listOf__stringMin1(output.selectedOutputs, context)
|
|
6086
6086
|
: undefined,
|
|
@@ -6088,7 +6088,7 @@ const deserializeAws_restJson1DashAdditionalManifest = (output, context) => {
|
|
|
6088
6088
|
};
|
|
6089
6089
|
const deserializeAws_restJson1DashIsoEncryptionSettings = (output, context) => {
|
|
6090
6090
|
return {
|
|
6091
|
-
PlaybackDeviceCompatibility: smithy_client_1.expectString(output.playbackDeviceCompatibility),
|
|
6091
|
+
PlaybackDeviceCompatibility: (0, smithy_client_1.expectString)(output.playbackDeviceCompatibility),
|
|
6092
6092
|
SpekeKeyProvider: output.spekeKeyProvider !== undefined && output.spekeKeyProvider !== null
|
|
6093
6093
|
? deserializeAws_restJson1SpekeKeyProvider(output.spekeKeyProvider, context)
|
|
6094
6094
|
: undefined,
|
|
@@ -6099,46 +6099,46 @@ const deserializeAws_restJson1DashIsoGroupSettings = (output, context) => {
|
|
|
6099
6099
|
AdditionalManifests: output.additionalManifests !== undefined && output.additionalManifests !== null
|
|
6100
6100
|
? deserializeAws_restJson1__listOfDashAdditionalManifest(output.additionalManifests, context)
|
|
6101
6101
|
: undefined,
|
|
6102
|
-
AudioChannelConfigSchemeIdUri: smithy_client_1.expectString(output.audioChannelConfigSchemeIdUri),
|
|
6103
|
-
BaseUrl: smithy_client_1.expectString(output.baseUrl),
|
|
6104
|
-
Destination: smithy_client_1.expectString(output.destination),
|
|
6102
|
+
AudioChannelConfigSchemeIdUri: (0, smithy_client_1.expectString)(output.audioChannelConfigSchemeIdUri),
|
|
6103
|
+
BaseUrl: (0, smithy_client_1.expectString)(output.baseUrl),
|
|
6104
|
+
Destination: (0, smithy_client_1.expectString)(output.destination),
|
|
6105
6105
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
6106
6106
|
? deserializeAws_restJson1DestinationSettings(output.destinationSettings, context)
|
|
6107
6107
|
: undefined,
|
|
6108
6108
|
Encryption: output.encryption !== undefined && output.encryption !== null
|
|
6109
6109
|
? deserializeAws_restJson1DashIsoEncryptionSettings(output.encryption, context)
|
|
6110
6110
|
: undefined,
|
|
6111
|
-
FragmentLength: smithy_client_1.expectInt32(output.fragmentLength),
|
|
6112
|
-
HbbtvCompliance: smithy_client_1.expectString(output.hbbtvCompliance),
|
|
6113
|
-
ImageBasedTrickPlay: smithy_client_1.expectString(output.imageBasedTrickPlay),
|
|
6111
|
+
FragmentLength: (0, smithy_client_1.expectInt32)(output.fragmentLength),
|
|
6112
|
+
HbbtvCompliance: (0, smithy_client_1.expectString)(output.hbbtvCompliance),
|
|
6113
|
+
ImageBasedTrickPlay: (0, smithy_client_1.expectString)(output.imageBasedTrickPlay),
|
|
6114
6114
|
ImageBasedTrickPlaySettings: output.imageBasedTrickPlaySettings !== undefined && output.imageBasedTrickPlaySettings !== null
|
|
6115
6115
|
? deserializeAws_restJson1DashIsoImageBasedTrickPlaySettings(output.imageBasedTrickPlaySettings, context)
|
|
6116
6116
|
: undefined,
|
|
6117
|
-
MinBufferTime: smithy_client_1.expectInt32(output.minBufferTime),
|
|
6118
|
-
MinFinalSegmentLength: smithy_client_1.limitedParseDouble(output.minFinalSegmentLength),
|
|
6119
|
-
MpdProfile: smithy_client_1.expectString(output.mpdProfile),
|
|
6120
|
-
PtsOffsetHandlingForBFrames: smithy_client_1.expectString(output.ptsOffsetHandlingForBFrames),
|
|
6121
|
-
SegmentControl: smithy_client_1.expectString(output.segmentControl),
|
|
6122
|
-
SegmentLength: smithy_client_1.expectInt32(output.segmentLength),
|
|
6123
|
-
SegmentLengthControl: smithy_client_1.expectString(output.segmentLengthControl),
|
|
6124
|
-
WriteSegmentTimelineInRepresentation: smithy_client_1.expectString(output.writeSegmentTimelineInRepresentation),
|
|
6117
|
+
MinBufferTime: (0, smithy_client_1.expectInt32)(output.minBufferTime),
|
|
6118
|
+
MinFinalSegmentLength: (0, smithy_client_1.limitedParseDouble)(output.minFinalSegmentLength),
|
|
6119
|
+
MpdProfile: (0, smithy_client_1.expectString)(output.mpdProfile),
|
|
6120
|
+
PtsOffsetHandlingForBFrames: (0, smithy_client_1.expectString)(output.ptsOffsetHandlingForBFrames),
|
|
6121
|
+
SegmentControl: (0, smithy_client_1.expectString)(output.segmentControl),
|
|
6122
|
+
SegmentLength: (0, smithy_client_1.expectInt32)(output.segmentLength),
|
|
6123
|
+
SegmentLengthControl: (0, smithy_client_1.expectString)(output.segmentLengthControl),
|
|
6124
|
+
WriteSegmentTimelineInRepresentation: (0, smithy_client_1.expectString)(output.writeSegmentTimelineInRepresentation),
|
|
6125
6125
|
};
|
|
6126
6126
|
};
|
|
6127
6127
|
const deserializeAws_restJson1DashIsoImageBasedTrickPlaySettings = (output, context) => {
|
|
6128
6128
|
return {
|
|
6129
|
-
IntervalCadence: smithy_client_1.expectString(output.intervalCadence),
|
|
6130
|
-
ThumbnailHeight: smithy_client_1.expectInt32(output.thumbnailHeight),
|
|
6131
|
-
ThumbnailInterval: smithy_client_1.limitedParseDouble(output.thumbnailInterval),
|
|
6132
|
-
ThumbnailWidth: smithy_client_1.expectInt32(output.thumbnailWidth),
|
|
6133
|
-
TileHeight: smithy_client_1.expectInt32(output.tileHeight),
|
|
6134
|
-
TileWidth: smithy_client_1.expectInt32(output.tileWidth),
|
|
6129
|
+
IntervalCadence: (0, smithy_client_1.expectString)(output.intervalCadence),
|
|
6130
|
+
ThumbnailHeight: (0, smithy_client_1.expectInt32)(output.thumbnailHeight),
|
|
6131
|
+
ThumbnailInterval: (0, smithy_client_1.limitedParseDouble)(output.thumbnailInterval),
|
|
6132
|
+
ThumbnailWidth: (0, smithy_client_1.expectInt32)(output.thumbnailWidth),
|
|
6133
|
+
TileHeight: (0, smithy_client_1.expectInt32)(output.tileHeight),
|
|
6134
|
+
TileWidth: (0, smithy_client_1.expectInt32)(output.tileWidth),
|
|
6135
6135
|
};
|
|
6136
6136
|
};
|
|
6137
6137
|
const deserializeAws_restJson1Deinterlacer = (output, context) => {
|
|
6138
6138
|
return {
|
|
6139
|
-
Algorithm: smithy_client_1.expectString(output.algorithm),
|
|
6140
|
-
Control: smithy_client_1.expectString(output.control),
|
|
6141
|
-
Mode: smithy_client_1.expectString(output.mode),
|
|
6139
|
+
Algorithm: (0, smithy_client_1.expectString)(output.algorithm),
|
|
6140
|
+
Control: (0, smithy_client_1.expectString)(output.control),
|
|
6141
|
+
Mode: (0, smithy_client_1.expectString)(output.mode),
|
|
6142
6142
|
};
|
|
6143
6143
|
};
|
|
6144
6144
|
const deserializeAws_restJson1DestinationSettings = (output, context) => {
|
|
@@ -6153,140 +6153,140 @@ const deserializeAws_restJson1DolbyVision = (output, context) => {
|
|
|
6153
6153
|
L6Metadata: output.l6Metadata !== undefined && output.l6Metadata !== null
|
|
6154
6154
|
? deserializeAws_restJson1DolbyVisionLevel6Metadata(output.l6Metadata, context)
|
|
6155
6155
|
: undefined,
|
|
6156
|
-
L6Mode: smithy_client_1.expectString(output.l6Mode),
|
|
6157
|
-
Profile: smithy_client_1.expectString(output.profile),
|
|
6156
|
+
L6Mode: (0, smithy_client_1.expectString)(output.l6Mode),
|
|
6157
|
+
Profile: (0, smithy_client_1.expectString)(output.profile),
|
|
6158
6158
|
};
|
|
6159
6159
|
};
|
|
6160
6160
|
const deserializeAws_restJson1DolbyVisionLevel6Metadata = (output, context) => {
|
|
6161
6161
|
return {
|
|
6162
|
-
MaxCll: smithy_client_1.expectInt32(output.maxCll),
|
|
6163
|
-
MaxFall: smithy_client_1.expectInt32(output.maxFall),
|
|
6162
|
+
MaxCll: (0, smithy_client_1.expectInt32)(output.maxCll),
|
|
6163
|
+
MaxFall: (0, smithy_client_1.expectInt32)(output.maxFall),
|
|
6164
6164
|
};
|
|
6165
6165
|
};
|
|
6166
6166
|
const deserializeAws_restJson1DvbNitSettings = (output, context) => {
|
|
6167
6167
|
return {
|
|
6168
|
-
NetworkId: smithy_client_1.expectInt32(output.networkId),
|
|
6169
|
-
NetworkName: smithy_client_1.expectString(output.networkName),
|
|
6170
|
-
NitInterval: smithy_client_1.expectInt32(output.nitInterval),
|
|
6168
|
+
NetworkId: (0, smithy_client_1.expectInt32)(output.networkId),
|
|
6169
|
+
NetworkName: (0, smithy_client_1.expectString)(output.networkName),
|
|
6170
|
+
NitInterval: (0, smithy_client_1.expectInt32)(output.nitInterval),
|
|
6171
6171
|
};
|
|
6172
6172
|
};
|
|
6173
6173
|
const deserializeAws_restJson1DvbSdtSettings = (output, context) => {
|
|
6174
6174
|
return {
|
|
6175
|
-
OutputSdt: smithy_client_1.expectString(output.outputSdt),
|
|
6176
|
-
SdtInterval: smithy_client_1.expectInt32(output.sdtInterval),
|
|
6177
|
-
ServiceName: smithy_client_1.expectString(output.serviceName),
|
|
6178
|
-
ServiceProviderName: smithy_client_1.expectString(output.serviceProviderName),
|
|
6175
|
+
OutputSdt: (0, smithy_client_1.expectString)(output.outputSdt),
|
|
6176
|
+
SdtInterval: (0, smithy_client_1.expectInt32)(output.sdtInterval),
|
|
6177
|
+
ServiceName: (0, smithy_client_1.expectString)(output.serviceName),
|
|
6178
|
+
ServiceProviderName: (0, smithy_client_1.expectString)(output.serviceProviderName),
|
|
6179
6179
|
};
|
|
6180
6180
|
};
|
|
6181
6181
|
const deserializeAws_restJson1DvbSubDestinationSettings = (output, context) => {
|
|
6182
6182
|
return {
|
|
6183
|
-
Alignment: smithy_client_1.expectString(output.alignment),
|
|
6184
|
-
ApplyFontColor: smithy_client_1.expectString(output.applyFontColor),
|
|
6185
|
-
BackgroundColor: smithy_client_1.expectString(output.backgroundColor),
|
|
6186
|
-
BackgroundOpacity: smithy_client_1.expectInt32(output.backgroundOpacity),
|
|
6187
|
-
DdsHandling: smithy_client_1.expectString(output.ddsHandling),
|
|
6188
|
-
DdsXCoordinate: smithy_client_1.expectInt32(output.ddsXCoordinate),
|
|
6189
|
-
DdsYCoordinate: smithy_client_1.expectInt32(output.ddsYCoordinate),
|
|
6190
|
-
FallbackFont: smithy_client_1.expectString(output.fallbackFont),
|
|
6191
|
-
FontColor: smithy_client_1.expectString(output.fontColor),
|
|
6192
|
-
FontOpacity: smithy_client_1.expectInt32(output.fontOpacity),
|
|
6193
|
-
FontResolution: smithy_client_1.expectInt32(output.fontResolution),
|
|
6194
|
-
FontScript: smithy_client_1.expectString(output.fontScript),
|
|
6195
|
-
FontSize: smithy_client_1.expectInt32(output.fontSize),
|
|
6196
|
-
Height: smithy_client_1.expectInt32(output.height),
|
|
6197
|
-
HexFontColor: smithy_client_1.expectString(output.hexFontColor),
|
|
6198
|
-
OutlineColor: smithy_client_1.expectString(output.outlineColor),
|
|
6199
|
-
OutlineSize: smithy_client_1.expectInt32(output.outlineSize),
|
|
6200
|
-
ShadowColor: smithy_client_1.expectString(output.shadowColor),
|
|
6201
|
-
ShadowOpacity: smithy_client_1.expectInt32(output.shadowOpacity),
|
|
6202
|
-
ShadowXOffset: smithy_client_1.expectInt32(output.shadowXOffset),
|
|
6203
|
-
ShadowYOffset: smithy_client_1.expectInt32(output.shadowYOffset),
|
|
6204
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
6205
|
-
SubtitlingType: smithy_client_1.expectString(output.subtitlingType),
|
|
6206
|
-
TeletextSpacing: smithy_client_1.expectString(output.teletextSpacing),
|
|
6207
|
-
Width: smithy_client_1.expectInt32(output.width),
|
|
6208
|
-
XPosition: smithy_client_1.expectInt32(output.xPosition),
|
|
6209
|
-
YPosition: smithy_client_1.expectInt32(output.yPosition),
|
|
6183
|
+
Alignment: (0, smithy_client_1.expectString)(output.alignment),
|
|
6184
|
+
ApplyFontColor: (0, smithy_client_1.expectString)(output.applyFontColor),
|
|
6185
|
+
BackgroundColor: (0, smithy_client_1.expectString)(output.backgroundColor),
|
|
6186
|
+
BackgroundOpacity: (0, smithy_client_1.expectInt32)(output.backgroundOpacity),
|
|
6187
|
+
DdsHandling: (0, smithy_client_1.expectString)(output.ddsHandling),
|
|
6188
|
+
DdsXCoordinate: (0, smithy_client_1.expectInt32)(output.ddsXCoordinate),
|
|
6189
|
+
DdsYCoordinate: (0, smithy_client_1.expectInt32)(output.ddsYCoordinate),
|
|
6190
|
+
FallbackFont: (0, smithy_client_1.expectString)(output.fallbackFont),
|
|
6191
|
+
FontColor: (0, smithy_client_1.expectString)(output.fontColor),
|
|
6192
|
+
FontOpacity: (0, smithy_client_1.expectInt32)(output.fontOpacity),
|
|
6193
|
+
FontResolution: (0, smithy_client_1.expectInt32)(output.fontResolution),
|
|
6194
|
+
FontScript: (0, smithy_client_1.expectString)(output.fontScript),
|
|
6195
|
+
FontSize: (0, smithy_client_1.expectInt32)(output.fontSize),
|
|
6196
|
+
Height: (0, smithy_client_1.expectInt32)(output.height),
|
|
6197
|
+
HexFontColor: (0, smithy_client_1.expectString)(output.hexFontColor),
|
|
6198
|
+
OutlineColor: (0, smithy_client_1.expectString)(output.outlineColor),
|
|
6199
|
+
OutlineSize: (0, smithy_client_1.expectInt32)(output.outlineSize),
|
|
6200
|
+
ShadowColor: (0, smithy_client_1.expectString)(output.shadowColor),
|
|
6201
|
+
ShadowOpacity: (0, smithy_client_1.expectInt32)(output.shadowOpacity),
|
|
6202
|
+
ShadowXOffset: (0, smithy_client_1.expectInt32)(output.shadowXOffset),
|
|
6203
|
+
ShadowYOffset: (0, smithy_client_1.expectInt32)(output.shadowYOffset),
|
|
6204
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
6205
|
+
SubtitlingType: (0, smithy_client_1.expectString)(output.subtitlingType),
|
|
6206
|
+
TeletextSpacing: (0, smithy_client_1.expectString)(output.teletextSpacing),
|
|
6207
|
+
Width: (0, smithy_client_1.expectInt32)(output.width),
|
|
6208
|
+
XPosition: (0, smithy_client_1.expectInt32)(output.xPosition),
|
|
6209
|
+
YPosition: (0, smithy_client_1.expectInt32)(output.yPosition),
|
|
6210
6210
|
};
|
|
6211
6211
|
};
|
|
6212
6212
|
const deserializeAws_restJson1DvbSubSourceSettings = (output, context) => {
|
|
6213
6213
|
return {
|
|
6214
|
-
Pid: smithy_client_1.expectInt32(output.pid),
|
|
6214
|
+
Pid: (0, smithy_client_1.expectInt32)(output.pid),
|
|
6215
6215
|
};
|
|
6216
6216
|
};
|
|
6217
6217
|
const deserializeAws_restJson1DvbTdtSettings = (output, context) => {
|
|
6218
6218
|
return {
|
|
6219
|
-
TdtInterval: smithy_client_1.expectInt32(output.tdtInterval),
|
|
6219
|
+
TdtInterval: (0, smithy_client_1.expectInt32)(output.tdtInterval),
|
|
6220
6220
|
};
|
|
6221
6221
|
};
|
|
6222
6222
|
const deserializeAws_restJson1Eac3AtmosSettings = (output, context) => {
|
|
6223
6223
|
return {
|
|
6224
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
6225
|
-
BitstreamMode: smithy_client_1.expectString(output.bitstreamMode),
|
|
6226
|
-
CodingMode: smithy_client_1.expectString(output.codingMode),
|
|
6227
|
-
DialogueIntelligence: smithy_client_1.expectString(output.dialogueIntelligence),
|
|
6228
|
-
DownmixControl: smithy_client_1.expectString(output.downmixControl),
|
|
6229
|
-
DynamicRangeCompressionLine: smithy_client_1.expectString(output.dynamicRangeCompressionLine),
|
|
6230
|
-
DynamicRangeCompressionRf: smithy_client_1.expectString(output.dynamicRangeCompressionRf),
|
|
6231
|
-
DynamicRangeControl: smithy_client_1.expectString(output.dynamicRangeControl),
|
|
6232
|
-
LoRoCenterMixLevel: smithy_client_1.limitedParseDouble(output.loRoCenterMixLevel),
|
|
6233
|
-
LoRoSurroundMixLevel: smithy_client_1.limitedParseDouble(output.loRoSurroundMixLevel),
|
|
6234
|
-
LtRtCenterMixLevel: smithy_client_1.limitedParseDouble(output.ltRtCenterMixLevel),
|
|
6235
|
-
LtRtSurroundMixLevel: smithy_client_1.limitedParseDouble(output.ltRtSurroundMixLevel),
|
|
6236
|
-
MeteringMode: smithy_client_1.expectString(output.meteringMode),
|
|
6237
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
6238
|
-
SpeechThreshold: smithy_client_1.expectInt32(output.speechThreshold),
|
|
6239
|
-
StereoDownmix: smithy_client_1.expectString(output.stereoDownmix),
|
|
6240
|
-
SurroundExMode: smithy_client_1.expectString(output.surroundExMode),
|
|
6224
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
6225
|
+
BitstreamMode: (0, smithy_client_1.expectString)(output.bitstreamMode),
|
|
6226
|
+
CodingMode: (0, smithy_client_1.expectString)(output.codingMode),
|
|
6227
|
+
DialogueIntelligence: (0, smithy_client_1.expectString)(output.dialogueIntelligence),
|
|
6228
|
+
DownmixControl: (0, smithy_client_1.expectString)(output.downmixControl),
|
|
6229
|
+
DynamicRangeCompressionLine: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionLine),
|
|
6230
|
+
DynamicRangeCompressionRf: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionRf),
|
|
6231
|
+
DynamicRangeControl: (0, smithy_client_1.expectString)(output.dynamicRangeControl),
|
|
6232
|
+
LoRoCenterMixLevel: (0, smithy_client_1.limitedParseDouble)(output.loRoCenterMixLevel),
|
|
6233
|
+
LoRoSurroundMixLevel: (0, smithy_client_1.limitedParseDouble)(output.loRoSurroundMixLevel),
|
|
6234
|
+
LtRtCenterMixLevel: (0, smithy_client_1.limitedParseDouble)(output.ltRtCenterMixLevel),
|
|
6235
|
+
LtRtSurroundMixLevel: (0, smithy_client_1.limitedParseDouble)(output.ltRtSurroundMixLevel),
|
|
6236
|
+
MeteringMode: (0, smithy_client_1.expectString)(output.meteringMode),
|
|
6237
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
6238
|
+
SpeechThreshold: (0, smithy_client_1.expectInt32)(output.speechThreshold),
|
|
6239
|
+
StereoDownmix: (0, smithy_client_1.expectString)(output.stereoDownmix),
|
|
6240
|
+
SurroundExMode: (0, smithy_client_1.expectString)(output.surroundExMode),
|
|
6241
6241
|
};
|
|
6242
6242
|
};
|
|
6243
6243
|
const deserializeAws_restJson1Eac3Settings = (output, context) => {
|
|
6244
6244
|
return {
|
|
6245
|
-
AttenuationControl: smithy_client_1.expectString(output.attenuationControl),
|
|
6246
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
6247
|
-
BitstreamMode: smithy_client_1.expectString(output.bitstreamMode),
|
|
6248
|
-
CodingMode: smithy_client_1.expectString(output.codingMode),
|
|
6249
|
-
DcFilter: smithy_client_1.expectString(output.dcFilter),
|
|
6250
|
-
Dialnorm: smithy_client_1.expectInt32(output.dialnorm),
|
|
6251
|
-
DynamicRangeCompressionLine: smithy_client_1.expectString(output.dynamicRangeCompressionLine),
|
|
6252
|
-
DynamicRangeCompressionRf: smithy_client_1.expectString(output.dynamicRangeCompressionRf),
|
|
6253
|
-
LfeControl: smithy_client_1.expectString(output.lfeControl),
|
|
6254
|
-
LfeFilter: smithy_client_1.expectString(output.lfeFilter),
|
|
6255
|
-
LoRoCenterMixLevel: smithy_client_1.limitedParseDouble(output.loRoCenterMixLevel),
|
|
6256
|
-
LoRoSurroundMixLevel: smithy_client_1.limitedParseDouble(output.loRoSurroundMixLevel),
|
|
6257
|
-
LtRtCenterMixLevel: smithy_client_1.limitedParseDouble(output.ltRtCenterMixLevel),
|
|
6258
|
-
LtRtSurroundMixLevel: smithy_client_1.limitedParseDouble(output.ltRtSurroundMixLevel),
|
|
6259
|
-
MetadataControl: smithy_client_1.expectString(output.metadataControl),
|
|
6260
|
-
PassthroughControl: smithy_client_1.expectString(output.passthroughControl),
|
|
6261
|
-
PhaseControl: smithy_client_1.expectString(output.phaseControl),
|
|
6262
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
6263
|
-
StereoDownmix: smithy_client_1.expectString(output.stereoDownmix),
|
|
6264
|
-
SurroundExMode: smithy_client_1.expectString(output.surroundExMode),
|
|
6265
|
-
SurroundMode: smithy_client_1.expectString(output.surroundMode),
|
|
6245
|
+
AttenuationControl: (0, smithy_client_1.expectString)(output.attenuationControl),
|
|
6246
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
6247
|
+
BitstreamMode: (0, smithy_client_1.expectString)(output.bitstreamMode),
|
|
6248
|
+
CodingMode: (0, smithy_client_1.expectString)(output.codingMode),
|
|
6249
|
+
DcFilter: (0, smithy_client_1.expectString)(output.dcFilter),
|
|
6250
|
+
Dialnorm: (0, smithy_client_1.expectInt32)(output.dialnorm),
|
|
6251
|
+
DynamicRangeCompressionLine: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionLine),
|
|
6252
|
+
DynamicRangeCompressionRf: (0, smithy_client_1.expectString)(output.dynamicRangeCompressionRf),
|
|
6253
|
+
LfeControl: (0, smithy_client_1.expectString)(output.lfeControl),
|
|
6254
|
+
LfeFilter: (0, smithy_client_1.expectString)(output.lfeFilter),
|
|
6255
|
+
LoRoCenterMixLevel: (0, smithy_client_1.limitedParseDouble)(output.loRoCenterMixLevel),
|
|
6256
|
+
LoRoSurroundMixLevel: (0, smithy_client_1.limitedParseDouble)(output.loRoSurroundMixLevel),
|
|
6257
|
+
LtRtCenterMixLevel: (0, smithy_client_1.limitedParseDouble)(output.ltRtCenterMixLevel),
|
|
6258
|
+
LtRtSurroundMixLevel: (0, smithy_client_1.limitedParseDouble)(output.ltRtSurroundMixLevel),
|
|
6259
|
+
MetadataControl: (0, smithy_client_1.expectString)(output.metadataControl),
|
|
6260
|
+
PassthroughControl: (0, smithy_client_1.expectString)(output.passthroughControl),
|
|
6261
|
+
PhaseControl: (0, smithy_client_1.expectString)(output.phaseControl),
|
|
6262
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
6263
|
+
StereoDownmix: (0, smithy_client_1.expectString)(output.stereoDownmix),
|
|
6264
|
+
SurroundExMode: (0, smithy_client_1.expectString)(output.surroundExMode),
|
|
6265
|
+
SurroundMode: (0, smithy_client_1.expectString)(output.surroundMode),
|
|
6266
6266
|
};
|
|
6267
6267
|
};
|
|
6268
6268
|
const deserializeAws_restJson1EmbeddedDestinationSettings = (output, context) => {
|
|
6269
6269
|
return {
|
|
6270
|
-
Destination608ChannelNumber: smithy_client_1.expectInt32(output.destination608ChannelNumber),
|
|
6271
|
-
Destination708ServiceNumber: smithy_client_1.expectInt32(output.destination708ServiceNumber),
|
|
6270
|
+
Destination608ChannelNumber: (0, smithy_client_1.expectInt32)(output.destination608ChannelNumber),
|
|
6271
|
+
Destination708ServiceNumber: (0, smithy_client_1.expectInt32)(output.destination708ServiceNumber),
|
|
6272
6272
|
};
|
|
6273
6273
|
};
|
|
6274
6274
|
const deserializeAws_restJson1EmbeddedSourceSettings = (output, context) => {
|
|
6275
6275
|
return {
|
|
6276
|
-
Convert608To708: smithy_client_1.expectString(output.convert608To708),
|
|
6277
|
-
Source608ChannelNumber: smithy_client_1.expectInt32(output.source608ChannelNumber),
|
|
6278
|
-
Source608TrackNumber: smithy_client_1.expectInt32(output.source608TrackNumber),
|
|
6279
|
-
TerminateCaptions: smithy_client_1.expectString(output.terminateCaptions),
|
|
6276
|
+
Convert608To708: (0, smithy_client_1.expectString)(output.convert608To708),
|
|
6277
|
+
Source608ChannelNumber: (0, smithy_client_1.expectInt32)(output.source608ChannelNumber),
|
|
6278
|
+
Source608TrackNumber: (0, smithy_client_1.expectInt32)(output.source608TrackNumber),
|
|
6279
|
+
TerminateCaptions: (0, smithy_client_1.expectString)(output.terminateCaptions),
|
|
6280
6280
|
};
|
|
6281
6281
|
};
|
|
6282
6282
|
const deserializeAws_restJson1Endpoint = (output, context) => {
|
|
6283
6283
|
return {
|
|
6284
|
-
Url: smithy_client_1.expectString(output.url),
|
|
6284
|
+
Url: (0, smithy_client_1.expectString)(output.url),
|
|
6285
6285
|
};
|
|
6286
6286
|
};
|
|
6287
6287
|
const deserializeAws_restJson1EsamManifestConfirmConditionNotification = (output, context) => {
|
|
6288
6288
|
return {
|
|
6289
|
-
MccXml: smithy_client_1.expectString(output.mccXml),
|
|
6289
|
+
MccXml: (0, smithy_client_1.expectString)(output.mccXml),
|
|
6290
6290
|
};
|
|
6291
6291
|
};
|
|
6292
6292
|
const deserializeAws_restJson1EsamSettings = (output, context) => {
|
|
@@ -6294,7 +6294,7 @@ const deserializeAws_restJson1EsamSettings = (output, context) => {
|
|
|
6294
6294
|
ManifestConfirmConditionNotification: output.manifestConfirmConditionNotification !== undefined && output.manifestConfirmConditionNotification !== null
|
|
6295
6295
|
? deserializeAws_restJson1EsamManifestConfirmConditionNotification(output.manifestConfirmConditionNotification, context)
|
|
6296
6296
|
: undefined,
|
|
6297
|
-
ResponseSignalPreroll: smithy_client_1.expectInt32(output.responseSignalPreroll),
|
|
6297
|
+
ResponseSignalPreroll: (0, smithy_client_1.expectInt32)(output.responseSignalPreroll),
|
|
6298
6298
|
SignalProcessingNotification: output.signalProcessingNotification !== undefined && output.signalProcessingNotification !== null
|
|
6299
6299
|
? deserializeAws_restJson1EsamSignalProcessingNotification(output.signalProcessingNotification, context)
|
|
6300
6300
|
: undefined,
|
|
@@ -6302,23 +6302,23 @@ const deserializeAws_restJson1EsamSettings = (output, context) => {
|
|
|
6302
6302
|
};
|
|
6303
6303
|
const deserializeAws_restJson1EsamSignalProcessingNotification = (output, context) => {
|
|
6304
6304
|
return {
|
|
6305
|
-
SccXml: smithy_client_1.expectString(output.sccXml),
|
|
6305
|
+
SccXml: (0, smithy_client_1.expectString)(output.sccXml),
|
|
6306
6306
|
};
|
|
6307
6307
|
};
|
|
6308
6308
|
const deserializeAws_restJson1ExtendedDataServices = (output, context) => {
|
|
6309
6309
|
return {
|
|
6310
|
-
CopyProtectionAction: smithy_client_1.expectString(output.copyProtectionAction),
|
|
6311
|
-
VchipAction: smithy_client_1.expectString(output.vchipAction),
|
|
6310
|
+
CopyProtectionAction: (0, smithy_client_1.expectString)(output.copyProtectionAction),
|
|
6311
|
+
VchipAction: (0, smithy_client_1.expectString)(output.vchipAction),
|
|
6312
6312
|
};
|
|
6313
6313
|
};
|
|
6314
6314
|
const deserializeAws_restJson1F4vSettings = (output, context) => {
|
|
6315
6315
|
return {
|
|
6316
|
-
MoovPlacement: smithy_client_1.expectString(output.moovPlacement),
|
|
6316
|
+
MoovPlacement: (0, smithy_client_1.expectString)(output.moovPlacement),
|
|
6317
6317
|
};
|
|
6318
6318
|
};
|
|
6319
6319
|
const deserializeAws_restJson1FileGroupSettings = (output, context) => {
|
|
6320
6320
|
return {
|
|
6321
|
-
Destination: smithy_client_1.expectString(output.destination),
|
|
6321
|
+
Destination: (0, smithy_client_1.expectString)(output.destination),
|
|
6322
6322
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
6323
6323
|
? deserializeAws_restJson1DestinationSettings(output.destinationSettings, context)
|
|
6324
6324
|
: undefined,
|
|
@@ -6326,154 +6326,154 @@ const deserializeAws_restJson1FileGroupSettings = (output, context) => {
|
|
|
6326
6326
|
};
|
|
6327
6327
|
const deserializeAws_restJson1FileSourceSettings = (output, context) => {
|
|
6328
6328
|
return {
|
|
6329
|
-
Convert608To708: smithy_client_1.expectString(output.convert608To708),
|
|
6329
|
+
Convert608To708: (0, smithy_client_1.expectString)(output.convert608To708),
|
|
6330
6330
|
Framerate: output.framerate !== undefined && output.framerate !== null
|
|
6331
6331
|
? deserializeAws_restJson1CaptionSourceFramerate(output.framerate, context)
|
|
6332
6332
|
: undefined,
|
|
6333
|
-
SourceFile: smithy_client_1.expectString(output.sourceFile),
|
|
6334
|
-
TimeDelta: smithy_client_1.expectInt32(output.timeDelta),
|
|
6335
|
-
TimeDeltaUnits: smithy_client_1.expectString(output.timeDeltaUnits),
|
|
6333
|
+
SourceFile: (0, smithy_client_1.expectString)(output.sourceFile),
|
|
6334
|
+
TimeDelta: (0, smithy_client_1.expectInt32)(output.timeDelta),
|
|
6335
|
+
TimeDeltaUnits: (0, smithy_client_1.expectString)(output.timeDeltaUnits),
|
|
6336
6336
|
};
|
|
6337
6337
|
};
|
|
6338
6338
|
const deserializeAws_restJson1FrameCaptureSettings = (output, context) => {
|
|
6339
6339
|
return {
|
|
6340
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
6341
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
6342
|
-
MaxCaptures: smithy_client_1.expectInt32(output.maxCaptures),
|
|
6343
|
-
Quality: smithy_client_1.expectInt32(output.quality),
|
|
6340
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
6341
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
6342
|
+
MaxCaptures: (0, smithy_client_1.expectInt32)(output.maxCaptures),
|
|
6343
|
+
Quality: (0, smithy_client_1.expectInt32)(output.quality),
|
|
6344
6344
|
};
|
|
6345
6345
|
};
|
|
6346
6346
|
const deserializeAws_restJson1H264QvbrSettings = (output, context) => {
|
|
6347
6347
|
return {
|
|
6348
|
-
MaxAverageBitrate: smithy_client_1.expectInt32(output.maxAverageBitrate),
|
|
6349
|
-
QvbrQualityLevel: smithy_client_1.expectInt32(output.qvbrQualityLevel),
|
|
6350
|
-
QvbrQualityLevelFineTune: smithy_client_1.limitedParseDouble(output.qvbrQualityLevelFineTune),
|
|
6348
|
+
MaxAverageBitrate: (0, smithy_client_1.expectInt32)(output.maxAverageBitrate),
|
|
6349
|
+
QvbrQualityLevel: (0, smithy_client_1.expectInt32)(output.qvbrQualityLevel),
|
|
6350
|
+
QvbrQualityLevelFineTune: (0, smithy_client_1.limitedParseDouble)(output.qvbrQualityLevelFineTune),
|
|
6351
6351
|
};
|
|
6352
6352
|
};
|
|
6353
6353
|
const deserializeAws_restJson1H264Settings = (output, context) => {
|
|
6354
6354
|
return {
|
|
6355
|
-
AdaptiveQuantization: smithy_client_1.expectString(output.adaptiveQuantization),
|
|
6356
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
6357
|
-
CodecLevel: smithy_client_1.expectString(output.codecLevel),
|
|
6358
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
6359
|
-
DynamicSubGop: smithy_client_1.expectString(output.dynamicSubGop),
|
|
6360
|
-
EntropyEncoding: smithy_client_1.expectString(output.entropyEncoding),
|
|
6361
|
-
FieldEncoding: smithy_client_1.expectString(output.fieldEncoding),
|
|
6362
|
-
FlickerAdaptiveQuantization: smithy_client_1.expectString(output.flickerAdaptiveQuantization),
|
|
6363
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
6364
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
6365
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
6366
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
6367
|
-
GopBReference: smithy_client_1.expectString(output.gopBReference),
|
|
6368
|
-
GopClosedCadence: smithy_client_1.expectInt32(output.gopClosedCadence),
|
|
6369
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
6370
|
-
GopSizeUnits: smithy_client_1.expectString(output.gopSizeUnits),
|
|
6371
|
-
HrdBufferInitialFillPercentage: smithy_client_1.expectInt32(output.hrdBufferInitialFillPercentage),
|
|
6372
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
6373
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
6374
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
6375
|
-
MinIInterval: smithy_client_1.expectInt32(output.minIInterval),
|
|
6376
|
-
NumberBFramesBetweenReferenceFrames: smithy_client_1.expectInt32(output.numberBFramesBetweenReferenceFrames),
|
|
6377
|
-
NumberReferenceFrames: smithy_client_1.expectInt32(output.numberReferenceFrames),
|
|
6378
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
6379
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
6380
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
6381
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
6355
|
+
AdaptiveQuantization: (0, smithy_client_1.expectString)(output.adaptiveQuantization),
|
|
6356
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
6357
|
+
CodecLevel: (0, smithy_client_1.expectString)(output.codecLevel),
|
|
6358
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
6359
|
+
DynamicSubGop: (0, smithy_client_1.expectString)(output.dynamicSubGop),
|
|
6360
|
+
EntropyEncoding: (0, smithy_client_1.expectString)(output.entropyEncoding),
|
|
6361
|
+
FieldEncoding: (0, smithy_client_1.expectString)(output.fieldEncoding),
|
|
6362
|
+
FlickerAdaptiveQuantization: (0, smithy_client_1.expectString)(output.flickerAdaptiveQuantization),
|
|
6363
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
6364
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
6365
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
6366
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
6367
|
+
GopBReference: (0, smithy_client_1.expectString)(output.gopBReference),
|
|
6368
|
+
GopClosedCadence: (0, smithy_client_1.expectInt32)(output.gopClosedCadence),
|
|
6369
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
6370
|
+
GopSizeUnits: (0, smithy_client_1.expectString)(output.gopSizeUnits),
|
|
6371
|
+
HrdBufferInitialFillPercentage: (0, smithy_client_1.expectInt32)(output.hrdBufferInitialFillPercentage),
|
|
6372
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
6373
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
6374
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
6375
|
+
MinIInterval: (0, smithy_client_1.expectInt32)(output.minIInterval),
|
|
6376
|
+
NumberBFramesBetweenReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberBFramesBetweenReferenceFrames),
|
|
6377
|
+
NumberReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberReferenceFrames),
|
|
6378
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
6379
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
6380
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
6381
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
6382
6382
|
QvbrSettings: output.qvbrSettings !== undefined && output.qvbrSettings !== null
|
|
6383
6383
|
? deserializeAws_restJson1H264QvbrSettings(output.qvbrSettings, context)
|
|
6384
6384
|
: undefined,
|
|
6385
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
6386
|
-
RepeatPps: smithy_client_1.expectString(output.repeatPps),
|
|
6387
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
6388
|
-
SceneChangeDetect: smithy_client_1.expectString(output.sceneChangeDetect),
|
|
6389
|
-
Slices: smithy_client_1.expectInt32(output.slices),
|
|
6390
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
6391
|
-
Softness: smithy_client_1.expectInt32(output.softness),
|
|
6392
|
-
SpatialAdaptiveQuantization: smithy_client_1.expectString(output.spatialAdaptiveQuantization),
|
|
6393
|
-
Syntax: smithy_client_1.expectString(output.syntax),
|
|
6394
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
6395
|
-
TemporalAdaptiveQuantization: smithy_client_1.expectString(output.temporalAdaptiveQuantization),
|
|
6396
|
-
UnregisteredSeiTimecode: smithy_client_1.expectString(output.unregisteredSeiTimecode),
|
|
6385
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
6386
|
+
RepeatPps: (0, smithy_client_1.expectString)(output.repeatPps),
|
|
6387
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
6388
|
+
SceneChangeDetect: (0, smithy_client_1.expectString)(output.sceneChangeDetect),
|
|
6389
|
+
Slices: (0, smithy_client_1.expectInt32)(output.slices),
|
|
6390
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
6391
|
+
Softness: (0, smithy_client_1.expectInt32)(output.softness),
|
|
6392
|
+
SpatialAdaptiveQuantization: (0, smithy_client_1.expectString)(output.spatialAdaptiveQuantization),
|
|
6393
|
+
Syntax: (0, smithy_client_1.expectString)(output.syntax),
|
|
6394
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
6395
|
+
TemporalAdaptiveQuantization: (0, smithy_client_1.expectString)(output.temporalAdaptiveQuantization),
|
|
6396
|
+
UnregisteredSeiTimecode: (0, smithy_client_1.expectString)(output.unregisteredSeiTimecode),
|
|
6397
6397
|
};
|
|
6398
6398
|
};
|
|
6399
6399
|
const deserializeAws_restJson1H265QvbrSettings = (output, context) => {
|
|
6400
6400
|
return {
|
|
6401
|
-
MaxAverageBitrate: smithy_client_1.expectInt32(output.maxAverageBitrate),
|
|
6402
|
-
QvbrQualityLevel: smithy_client_1.expectInt32(output.qvbrQualityLevel),
|
|
6403
|
-
QvbrQualityLevelFineTune: smithy_client_1.limitedParseDouble(output.qvbrQualityLevelFineTune),
|
|
6401
|
+
MaxAverageBitrate: (0, smithy_client_1.expectInt32)(output.maxAverageBitrate),
|
|
6402
|
+
QvbrQualityLevel: (0, smithy_client_1.expectInt32)(output.qvbrQualityLevel),
|
|
6403
|
+
QvbrQualityLevelFineTune: (0, smithy_client_1.limitedParseDouble)(output.qvbrQualityLevelFineTune),
|
|
6404
6404
|
};
|
|
6405
6405
|
};
|
|
6406
6406
|
const deserializeAws_restJson1H265Settings = (output, context) => {
|
|
6407
6407
|
return {
|
|
6408
|
-
AdaptiveQuantization: smithy_client_1.expectString(output.adaptiveQuantization),
|
|
6409
|
-
AlternateTransferFunctionSei: smithy_client_1.expectString(output.alternateTransferFunctionSei),
|
|
6410
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
6411
|
-
CodecLevel: smithy_client_1.expectString(output.codecLevel),
|
|
6412
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
6413
|
-
DynamicSubGop: smithy_client_1.expectString(output.dynamicSubGop),
|
|
6414
|
-
FlickerAdaptiveQuantization: smithy_client_1.expectString(output.flickerAdaptiveQuantization),
|
|
6415
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
6416
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
6417
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
6418
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
6419
|
-
GopBReference: smithy_client_1.expectString(output.gopBReference),
|
|
6420
|
-
GopClosedCadence: smithy_client_1.expectInt32(output.gopClosedCadence),
|
|
6421
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
6422
|
-
GopSizeUnits: smithy_client_1.expectString(output.gopSizeUnits),
|
|
6423
|
-
HrdBufferInitialFillPercentage: smithy_client_1.expectInt32(output.hrdBufferInitialFillPercentage),
|
|
6424
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
6425
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
6426
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
6427
|
-
MinIInterval: smithy_client_1.expectInt32(output.minIInterval),
|
|
6428
|
-
NumberBFramesBetweenReferenceFrames: smithy_client_1.expectInt32(output.numberBFramesBetweenReferenceFrames),
|
|
6429
|
-
NumberReferenceFrames: smithy_client_1.expectInt32(output.numberReferenceFrames),
|
|
6430
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
6431
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
6432
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
6433
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
6408
|
+
AdaptiveQuantization: (0, smithy_client_1.expectString)(output.adaptiveQuantization),
|
|
6409
|
+
AlternateTransferFunctionSei: (0, smithy_client_1.expectString)(output.alternateTransferFunctionSei),
|
|
6410
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
6411
|
+
CodecLevel: (0, smithy_client_1.expectString)(output.codecLevel),
|
|
6412
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
6413
|
+
DynamicSubGop: (0, smithy_client_1.expectString)(output.dynamicSubGop),
|
|
6414
|
+
FlickerAdaptiveQuantization: (0, smithy_client_1.expectString)(output.flickerAdaptiveQuantization),
|
|
6415
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
6416
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
6417
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
6418
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
6419
|
+
GopBReference: (0, smithy_client_1.expectString)(output.gopBReference),
|
|
6420
|
+
GopClosedCadence: (0, smithy_client_1.expectInt32)(output.gopClosedCadence),
|
|
6421
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
6422
|
+
GopSizeUnits: (0, smithy_client_1.expectString)(output.gopSizeUnits),
|
|
6423
|
+
HrdBufferInitialFillPercentage: (0, smithy_client_1.expectInt32)(output.hrdBufferInitialFillPercentage),
|
|
6424
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
6425
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
6426
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
6427
|
+
MinIInterval: (0, smithy_client_1.expectInt32)(output.minIInterval),
|
|
6428
|
+
NumberBFramesBetweenReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberBFramesBetweenReferenceFrames),
|
|
6429
|
+
NumberReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberReferenceFrames),
|
|
6430
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
6431
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
6432
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
6433
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
6434
6434
|
QvbrSettings: output.qvbrSettings !== undefined && output.qvbrSettings !== null
|
|
6435
6435
|
? deserializeAws_restJson1H265QvbrSettings(output.qvbrSettings, context)
|
|
6436
6436
|
: undefined,
|
|
6437
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
6438
|
-
SampleAdaptiveOffsetFilterMode: smithy_client_1.expectString(output.sampleAdaptiveOffsetFilterMode),
|
|
6439
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
6440
|
-
SceneChangeDetect: smithy_client_1.expectString(output.sceneChangeDetect),
|
|
6441
|
-
Slices: smithy_client_1.expectInt32(output.slices),
|
|
6442
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
6443
|
-
SpatialAdaptiveQuantization: smithy_client_1.expectString(output.spatialAdaptiveQuantization),
|
|
6444
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
6445
|
-
TemporalAdaptiveQuantization: smithy_client_1.expectString(output.temporalAdaptiveQuantization),
|
|
6446
|
-
TemporalIds: smithy_client_1.expectString(output.temporalIds),
|
|
6447
|
-
Tiles: smithy_client_1.expectString(output.tiles),
|
|
6448
|
-
UnregisteredSeiTimecode: smithy_client_1.expectString(output.unregisteredSeiTimecode),
|
|
6449
|
-
WriteMp4PackagingType: smithy_client_1.expectString(output.writeMp4PackagingType),
|
|
6437
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
6438
|
+
SampleAdaptiveOffsetFilterMode: (0, smithy_client_1.expectString)(output.sampleAdaptiveOffsetFilterMode),
|
|
6439
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
6440
|
+
SceneChangeDetect: (0, smithy_client_1.expectString)(output.sceneChangeDetect),
|
|
6441
|
+
Slices: (0, smithy_client_1.expectInt32)(output.slices),
|
|
6442
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
6443
|
+
SpatialAdaptiveQuantization: (0, smithy_client_1.expectString)(output.spatialAdaptiveQuantization),
|
|
6444
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
6445
|
+
TemporalAdaptiveQuantization: (0, smithy_client_1.expectString)(output.temporalAdaptiveQuantization),
|
|
6446
|
+
TemporalIds: (0, smithy_client_1.expectString)(output.temporalIds),
|
|
6447
|
+
Tiles: (0, smithy_client_1.expectString)(output.tiles),
|
|
6448
|
+
UnregisteredSeiTimecode: (0, smithy_client_1.expectString)(output.unregisteredSeiTimecode),
|
|
6449
|
+
WriteMp4PackagingType: (0, smithy_client_1.expectString)(output.writeMp4PackagingType),
|
|
6450
6450
|
};
|
|
6451
6451
|
};
|
|
6452
6452
|
const deserializeAws_restJson1Hdr10Metadata = (output, context) => {
|
|
6453
6453
|
return {
|
|
6454
|
-
BluePrimaryX: smithy_client_1.expectInt32(output.bluePrimaryX),
|
|
6455
|
-
BluePrimaryY: smithy_client_1.expectInt32(output.bluePrimaryY),
|
|
6456
|
-
GreenPrimaryX: smithy_client_1.expectInt32(output.greenPrimaryX),
|
|
6457
|
-
GreenPrimaryY: smithy_client_1.expectInt32(output.greenPrimaryY),
|
|
6458
|
-
MaxContentLightLevel: smithy_client_1.expectInt32(output.maxContentLightLevel),
|
|
6459
|
-
MaxFrameAverageLightLevel: smithy_client_1.expectInt32(output.maxFrameAverageLightLevel),
|
|
6460
|
-
MaxLuminance: smithy_client_1.expectInt32(output.maxLuminance),
|
|
6461
|
-
MinLuminance: smithy_client_1.expectInt32(output.minLuminance),
|
|
6462
|
-
RedPrimaryX: smithy_client_1.expectInt32(output.redPrimaryX),
|
|
6463
|
-
RedPrimaryY: smithy_client_1.expectInt32(output.redPrimaryY),
|
|
6464
|
-
WhitePointX: smithy_client_1.expectInt32(output.whitePointX),
|
|
6465
|
-
WhitePointY: smithy_client_1.expectInt32(output.whitePointY),
|
|
6454
|
+
BluePrimaryX: (0, smithy_client_1.expectInt32)(output.bluePrimaryX),
|
|
6455
|
+
BluePrimaryY: (0, smithy_client_1.expectInt32)(output.bluePrimaryY),
|
|
6456
|
+
GreenPrimaryX: (0, smithy_client_1.expectInt32)(output.greenPrimaryX),
|
|
6457
|
+
GreenPrimaryY: (0, smithy_client_1.expectInt32)(output.greenPrimaryY),
|
|
6458
|
+
MaxContentLightLevel: (0, smithy_client_1.expectInt32)(output.maxContentLightLevel),
|
|
6459
|
+
MaxFrameAverageLightLevel: (0, smithy_client_1.expectInt32)(output.maxFrameAverageLightLevel),
|
|
6460
|
+
MaxLuminance: (0, smithy_client_1.expectInt32)(output.maxLuminance),
|
|
6461
|
+
MinLuminance: (0, smithy_client_1.expectInt32)(output.minLuminance),
|
|
6462
|
+
RedPrimaryX: (0, smithy_client_1.expectInt32)(output.redPrimaryX),
|
|
6463
|
+
RedPrimaryY: (0, smithy_client_1.expectInt32)(output.redPrimaryY),
|
|
6464
|
+
WhitePointX: (0, smithy_client_1.expectInt32)(output.whitePointX),
|
|
6465
|
+
WhitePointY: (0, smithy_client_1.expectInt32)(output.whitePointY),
|
|
6466
6466
|
};
|
|
6467
6467
|
};
|
|
6468
6468
|
const deserializeAws_restJson1Hdr10Plus = (output, context) => {
|
|
6469
6469
|
return {
|
|
6470
|
-
MasteringMonitorNits: smithy_client_1.expectInt32(output.masteringMonitorNits),
|
|
6471
|
-
TargetMonitorNits: smithy_client_1.expectInt32(output.targetMonitorNits),
|
|
6470
|
+
MasteringMonitorNits: (0, smithy_client_1.expectInt32)(output.masteringMonitorNits),
|
|
6471
|
+
TargetMonitorNits: (0, smithy_client_1.expectInt32)(output.targetMonitorNits),
|
|
6472
6472
|
};
|
|
6473
6473
|
};
|
|
6474
6474
|
const deserializeAws_restJson1HlsAdditionalManifest = (output, context) => {
|
|
6475
6475
|
return {
|
|
6476
|
-
ManifestNameModifier: smithy_client_1.expectString(output.manifestNameModifier),
|
|
6476
|
+
ManifestNameModifier: (0, smithy_client_1.expectString)(output.manifestNameModifier),
|
|
6477
6477
|
SelectedOutputs: output.selectedOutputs !== undefined && output.selectedOutputs !== null
|
|
6478
6478
|
? deserializeAws_restJson1__listOf__stringMin1(output.selectedOutputs, context)
|
|
6479
6479
|
: undefined,
|
|
@@ -6481,25 +6481,25 @@ const deserializeAws_restJson1HlsAdditionalManifest = (output, context) => {
|
|
|
6481
6481
|
};
|
|
6482
6482
|
const deserializeAws_restJson1HlsCaptionLanguageMapping = (output, context) => {
|
|
6483
6483
|
return {
|
|
6484
|
-
CaptionChannel: smithy_client_1.expectInt32(output.captionChannel),
|
|
6485
|
-
CustomLanguageCode: smithy_client_1.expectString(output.customLanguageCode),
|
|
6486
|
-
LanguageCode: smithy_client_1.expectString(output.languageCode),
|
|
6487
|
-
LanguageDescription: smithy_client_1.expectString(output.languageDescription),
|
|
6484
|
+
CaptionChannel: (0, smithy_client_1.expectInt32)(output.captionChannel),
|
|
6485
|
+
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
6486
|
+
LanguageCode: (0, smithy_client_1.expectString)(output.languageCode),
|
|
6487
|
+
LanguageDescription: (0, smithy_client_1.expectString)(output.languageDescription),
|
|
6488
6488
|
};
|
|
6489
6489
|
};
|
|
6490
6490
|
const deserializeAws_restJson1HlsEncryptionSettings = (output, context) => {
|
|
6491
6491
|
return {
|
|
6492
|
-
ConstantInitializationVector: smithy_client_1.expectString(output.constantInitializationVector),
|
|
6493
|
-
EncryptionMethod: smithy_client_1.expectString(output.encryptionMethod),
|
|
6494
|
-
InitializationVectorInManifest: smithy_client_1.expectString(output.initializationVectorInManifest),
|
|
6495
|
-
OfflineEncrypted: smithy_client_1.expectString(output.offlineEncrypted),
|
|
6492
|
+
ConstantInitializationVector: (0, smithy_client_1.expectString)(output.constantInitializationVector),
|
|
6493
|
+
EncryptionMethod: (0, smithy_client_1.expectString)(output.encryptionMethod),
|
|
6494
|
+
InitializationVectorInManifest: (0, smithy_client_1.expectString)(output.initializationVectorInManifest),
|
|
6495
|
+
OfflineEncrypted: (0, smithy_client_1.expectString)(output.offlineEncrypted),
|
|
6496
6496
|
SpekeKeyProvider: output.spekeKeyProvider !== undefined && output.spekeKeyProvider !== null
|
|
6497
6497
|
? deserializeAws_restJson1SpekeKeyProvider(output.spekeKeyProvider, context)
|
|
6498
6498
|
: undefined,
|
|
6499
6499
|
StaticKeyProvider: output.staticKeyProvider !== undefined && output.staticKeyProvider !== null
|
|
6500
6500
|
? deserializeAws_restJson1StaticKeyProvider(output.staticKeyProvider, context)
|
|
6501
6501
|
: undefined,
|
|
6502
|
-
Type: smithy_client_1.expectString(output.type),
|
|
6502
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
6503
6503
|
};
|
|
6504
6504
|
};
|
|
6505
6505
|
const deserializeAws_restJson1HlsGroupSettings = (output, context) => {
|
|
@@ -6510,84 +6510,84 @@ const deserializeAws_restJson1HlsGroupSettings = (output, context) => {
|
|
|
6510
6510
|
AdditionalManifests: output.additionalManifests !== undefined && output.additionalManifests !== null
|
|
6511
6511
|
? deserializeAws_restJson1__listOfHlsAdditionalManifest(output.additionalManifests, context)
|
|
6512
6512
|
: undefined,
|
|
6513
|
-
AudioOnlyHeader: smithy_client_1.expectString(output.audioOnlyHeader),
|
|
6514
|
-
BaseUrl: smithy_client_1.expectString(output.baseUrl),
|
|
6513
|
+
AudioOnlyHeader: (0, smithy_client_1.expectString)(output.audioOnlyHeader),
|
|
6514
|
+
BaseUrl: (0, smithy_client_1.expectString)(output.baseUrl),
|
|
6515
6515
|
CaptionLanguageMappings: output.captionLanguageMappings !== undefined && output.captionLanguageMappings !== null
|
|
6516
6516
|
? deserializeAws_restJson1__listOfHlsCaptionLanguageMapping(output.captionLanguageMappings, context)
|
|
6517
6517
|
: undefined,
|
|
6518
|
-
CaptionLanguageSetting: smithy_client_1.expectString(output.captionLanguageSetting),
|
|
6519
|
-
CaptionSegmentLengthControl: smithy_client_1.expectString(output.captionSegmentLengthControl),
|
|
6520
|
-
ClientCache: smithy_client_1.expectString(output.clientCache),
|
|
6521
|
-
CodecSpecification: smithy_client_1.expectString(output.codecSpecification),
|
|
6522
|
-
Destination: smithy_client_1.expectString(output.destination),
|
|
6518
|
+
CaptionLanguageSetting: (0, smithy_client_1.expectString)(output.captionLanguageSetting),
|
|
6519
|
+
CaptionSegmentLengthControl: (0, smithy_client_1.expectString)(output.captionSegmentLengthControl),
|
|
6520
|
+
ClientCache: (0, smithy_client_1.expectString)(output.clientCache),
|
|
6521
|
+
CodecSpecification: (0, smithy_client_1.expectString)(output.codecSpecification),
|
|
6522
|
+
Destination: (0, smithy_client_1.expectString)(output.destination),
|
|
6523
6523
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
6524
6524
|
? deserializeAws_restJson1DestinationSettings(output.destinationSettings, context)
|
|
6525
6525
|
: undefined,
|
|
6526
|
-
DirectoryStructure: smithy_client_1.expectString(output.directoryStructure),
|
|
6526
|
+
DirectoryStructure: (0, smithy_client_1.expectString)(output.directoryStructure),
|
|
6527
6527
|
Encryption: output.encryption !== undefined && output.encryption !== null
|
|
6528
6528
|
? deserializeAws_restJson1HlsEncryptionSettings(output.encryption, context)
|
|
6529
6529
|
: undefined,
|
|
6530
|
-
ImageBasedTrickPlay: smithy_client_1.expectString(output.imageBasedTrickPlay),
|
|
6530
|
+
ImageBasedTrickPlay: (0, smithy_client_1.expectString)(output.imageBasedTrickPlay),
|
|
6531
6531
|
ImageBasedTrickPlaySettings: output.imageBasedTrickPlaySettings !== undefined && output.imageBasedTrickPlaySettings !== null
|
|
6532
6532
|
? deserializeAws_restJson1HlsImageBasedTrickPlaySettings(output.imageBasedTrickPlaySettings, context)
|
|
6533
6533
|
: undefined,
|
|
6534
|
-
ManifestCompression: smithy_client_1.expectString(output.manifestCompression),
|
|
6535
|
-
ManifestDurationFormat: smithy_client_1.expectString(output.manifestDurationFormat),
|
|
6536
|
-
MinFinalSegmentLength: smithy_client_1.limitedParseDouble(output.minFinalSegmentLength),
|
|
6537
|
-
MinSegmentLength: smithy_client_1.expectInt32(output.minSegmentLength),
|
|
6538
|
-
OutputSelection: smithy_client_1.expectString(output.outputSelection),
|
|
6539
|
-
ProgramDateTime: smithy_client_1.expectString(output.programDateTime),
|
|
6540
|
-
ProgramDateTimePeriod: smithy_client_1.expectInt32(output.programDateTimePeriod),
|
|
6541
|
-
SegmentControl: smithy_client_1.expectString(output.segmentControl),
|
|
6542
|
-
SegmentLength: smithy_client_1.expectInt32(output.segmentLength),
|
|
6543
|
-
SegmentLengthControl: smithy_client_1.expectString(output.segmentLengthControl),
|
|
6544
|
-
SegmentsPerSubdirectory: smithy_client_1.expectInt32(output.segmentsPerSubdirectory),
|
|
6545
|
-
StreamInfResolution: smithy_client_1.expectString(output.streamInfResolution),
|
|
6546
|
-
TargetDurationCompatibilityMode: smithy_client_1.expectString(output.targetDurationCompatibilityMode),
|
|
6547
|
-
TimedMetadataId3Frame: smithy_client_1.expectString(output.timedMetadataId3Frame),
|
|
6548
|
-
TimedMetadataId3Period: smithy_client_1.expectInt32(output.timedMetadataId3Period),
|
|
6549
|
-
TimestampDeltaMilliseconds: smithy_client_1.expectInt32(output.timestampDeltaMilliseconds),
|
|
6534
|
+
ManifestCompression: (0, smithy_client_1.expectString)(output.manifestCompression),
|
|
6535
|
+
ManifestDurationFormat: (0, smithy_client_1.expectString)(output.manifestDurationFormat),
|
|
6536
|
+
MinFinalSegmentLength: (0, smithy_client_1.limitedParseDouble)(output.minFinalSegmentLength),
|
|
6537
|
+
MinSegmentLength: (0, smithy_client_1.expectInt32)(output.minSegmentLength),
|
|
6538
|
+
OutputSelection: (0, smithy_client_1.expectString)(output.outputSelection),
|
|
6539
|
+
ProgramDateTime: (0, smithy_client_1.expectString)(output.programDateTime),
|
|
6540
|
+
ProgramDateTimePeriod: (0, smithy_client_1.expectInt32)(output.programDateTimePeriod),
|
|
6541
|
+
SegmentControl: (0, smithy_client_1.expectString)(output.segmentControl),
|
|
6542
|
+
SegmentLength: (0, smithy_client_1.expectInt32)(output.segmentLength),
|
|
6543
|
+
SegmentLengthControl: (0, smithy_client_1.expectString)(output.segmentLengthControl),
|
|
6544
|
+
SegmentsPerSubdirectory: (0, smithy_client_1.expectInt32)(output.segmentsPerSubdirectory),
|
|
6545
|
+
StreamInfResolution: (0, smithy_client_1.expectString)(output.streamInfResolution),
|
|
6546
|
+
TargetDurationCompatibilityMode: (0, smithy_client_1.expectString)(output.targetDurationCompatibilityMode),
|
|
6547
|
+
TimedMetadataId3Frame: (0, smithy_client_1.expectString)(output.timedMetadataId3Frame),
|
|
6548
|
+
TimedMetadataId3Period: (0, smithy_client_1.expectInt32)(output.timedMetadataId3Period),
|
|
6549
|
+
TimestampDeltaMilliseconds: (0, smithy_client_1.expectInt32)(output.timestampDeltaMilliseconds),
|
|
6550
6550
|
};
|
|
6551
6551
|
};
|
|
6552
6552
|
const deserializeAws_restJson1HlsImageBasedTrickPlaySettings = (output, context) => {
|
|
6553
6553
|
return {
|
|
6554
|
-
IntervalCadence: smithy_client_1.expectString(output.intervalCadence),
|
|
6555
|
-
ThumbnailHeight: smithy_client_1.expectInt32(output.thumbnailHeight),
|
|
6556
|
-
ThumbnailInterval: smithy_client_1.limitedParseDouble(output.thumbnailInterval),
|
|
6557
|
-
ThumbnailWidth: smithy_client_1.expectInt32(output.thumbnailWidth),
|
|
6558
|
-
TileHeight: smithy_client_1.expectInt32(output.tileHeight),
|
|
6559
|
-
TileWidth: smithy_client_1.expectInt32(output.tileWidth),
|
|
6554
|
+
IntervalCadence: (0, smithy_client_1.expectString)(output.intervalCadence),
|
|
6555
|
+
ThumbnailHeight: (0, smithy_client_1.expectInt32)(output.thumbnailHeight),
|
|
6556
|
+
ThumbnailInterval: (0, smithy_client_1.limitedParseDouble)(output.thumbnailInterval),
|
|
6557
|
+
ThumbnailWidth: (0, smithy_client_1.expectInt32)(output.thumbnailWidth),
|
|
6558
|
+
TileHeight: (0, smithy_client_1.expectInt32)(output.tileHeight),
|
|
6559
|
+
TileWidth: (0, smithy_client_1.expectInt32)(output.tileWidth),
|
|
6560
6560
|
};
|
|
6561
6561
|
};
|
|
6562
6562
|
const deserializeAws_restJson1HlsRenditionGroupSettings = (output, context) => {
|
|
6563
6563
|
return {
|
|
6564
|
-
RenditionGroupId: smithy_client_1.expectString(output.renditionGroupId),
|
|
6565
|
-
RenditionLanguageCode: smithy_client_1.expectString(output.renditionLanguageCode),
|
|
6566
|
-
RenditionName: smithy_client_1.expectString(output.renditionName),
|
|
6564
|
+
RenditionGroupId: (0, smithy_client_1.expectString)(output.renditionGroupId),
|
|
6565
|
+
RenditionLanguageCode: (0, smithy_client_1.expectString)(output.renditionLanguageCode),
|
|
6566
|
+
RenditionName: (0, smithy_client_1.expectString)(output.renditionName),
|
|
6567
6567
|
};
|
|
6568
6568
|
};
|
|
6569
6569
|
const deserializeAws_restJson1HlsSettings = (output, context) => {
|
|
6570
6570
|
return {
|
|
6571
|
-
AudioGroupId: smithy_client_1.expectString(output.audioGroupId),
|
|
6572
|
-
AudioOnlyContainer: smithy_client_1.expectString(output.audioOnlyContainer),
|
|
6573
|
-
AudioRenditionSets: smithy_client_1.expectString(output.audioRenditionSets),
|
|
6574
|
-
AudioTrackType: smithy_client_1.expectString(output.audioTrackType),
|
|
6575
|
-
DescriptiveVideoServiceFlag: smithy_client_1.expectString(output.descriptiveVideoServiceFlag),
|
|
6576
|
-
IFrameOnlyManifest: smithy_client_1.expectString(output.iFrameOnlyManifest),
|
|
6577
|
-
SegmentModifier: smithy_client_1.expectString(output.segmentModifier),
|
|
6571
|
+
AudioGroupId: (0, smithy_client_1.expectString)(output.audioGroupId),
|
|
6572
|
+
AudioOnlyContainer: (0, smithy_client_1.expectString)(output.audioOnlyContainer),
|
|
6573
|
+
AudioRenditionSets: (0, smithy_client_1.expectString)(output.audioRenditionSets),
|
|
6574
|
+
AudioTrackType: (0, smithy_client_1.expectString)(output.audioTrackType),
|
|
6575
|
+
DescriptiveVideoServiceFlag: (0, smithy_client_1.expectString)(output.descriptiveVideoServiceFlag),
|
|
6576
|
+
IFrameOnlyManifest: (0, smithy_client_1.expectString)(output.iFrameOnlyManifest),
|
|
6577
|
+
SegmentModifier: (0, smithy_client_1.expectString)(output.segmentModifier),
|
|
6578
6578
|
};
|
|
6579
6579
|
};
|
|
6580
6580
|
const deserializeAws_restJson1HopDestination = (output, context) => {
|
|
6581
6581
|
return {
|
|
6582
|
-
Priority: smithy_client_1.expectInt32(output.priority),
|
|
6583
|
-
Queue: smithy_client_1.expectString(output.queue),
|
|
6584
|
-
WaitMinutes: smithy_client_1.expectInt32(output.waitMinutes),
|
|
6582
|
+
Priority: (0, smithy_client_1.expectInt32)(output.priority),
|
|
6583
|
+
Queue: (0, smithy_client_1.expectString)(output.queue),
|
|
6584
|
+
WaitMinutes: (0, smithy_client_1.expectInt32)(output.waitMinutes),
|
|
6585
6585
|
};
|
|
6586
6586
|
};
|
|
6587
6587
|
const deserializeAws_restJson1Id3Insertion = (output, context) => {
|
|
6588
6588
|
return {
|
|
6589
|
-
Id3: smithy_client_1.expectString(output.id3),
|
|
6590
|
-
Timecode: smithy_client_1.expectString(output.timecode),
|
|
6589
|
+
Id3: (0, smithy_client_1.expectString)(output.id3),
|
|
6590
|
+
Timecode: (0, smithy_client_1.expectString)(output.timecode),
|
|
6591
6591
|
};
|
|
6592
6592
|
};
|
|
6593
6593
|
const deserializeAws_restJson1ImageInserter = (output, context) => {
|
|
@@ -6599,8 +6599,8 @@ const deserializeAws_restJson1ImageInserter = (output, context) => {
|
|
|
6599
6599
|
};
|
|
6600
6600
|
const deserializeAws_restJson1ImscDestinationSettings = (output, context) => {
|
|
6601
6601
|
return {
|
|
6602
|
-
Accessibility: smithy_client_1.expectString(output.accessibility),
|
|
6603
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
6602
|
+
Accessibility: (0, smithy_client_1.expectString)(output.accessibility),
|
|
6603
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
6604
6604
|
};
|
|
6605
6605
|
};
|
|
6606
6606
|
const deserializeAws_restJson1Input = (output, context) => {
|
|
@@ -6617,32 +6617,32 @@ const deserializeAws_restJson1Input = (output, context) => {
|
|
|
6617
6617
|
Crop: output.crop !== undefined && output.crop !== null
|
|
6618
6618
|
? deserializeAws_restJson1Rectangle(output.crop, context)
|
|
6619
6619
|
: undefined,
|
|
6620
|
-
DeblockFilter: smithy_client_1.expectString(output.deblockFilter),
|
|
6620
|
+
DeblockFilter: (0, smithy_client_1.expectString)(output.deblockFilter),
|
|
6621
6621
|
DecryptionSettings: output.decryptionSettings !== undefined && output.decryptionSettings !== null
|
|
6622
6622
|
? deserializeAws_restJson1InputDecryptionSettings(output.decryptionSettings, context)
|
|
6623
6623
|
: undefined,
|
|
6624
|
-
DenoiseFilter: smithy_client_1.expectString(output.denoiseFilter),
|
|
6625
|
-
DolbyVisionMetadataXml: smithy_client_1.expectString(output.dolbyVisionMetadataXml),
|
|
6626
|
-
FileInput: smithy_client_1.expectString(output.fileInput),
|
|
6627
|
-
FilterEnable: smithy_client_1.expectString(output.filterEnable),
|
|
6628
|
-
FilterStrength: smithy_client_1.expectInt32(output.filterStrength),
|
|
6624
|
+
DenoiseFilter: (0, smithy_client_1.expectString)(output.denoiseFilter),
|
|
6625
|
+
DolbyVisionMetadataXml: (0, smithy_client_1.expectString)(output.dolbyVisionMetadataXml),
|
|
6626
|
+
FileInput: (0, smithy_client_1.expectString)(output.fileInput),
|
|
6627
|
+
FilterEnable: (0, smithy_client_1.expectString)(output.filterEnable),
|
|
6628
|
+
FilterStrength: (0, smithy_client_1.expectInt32)(output.filterStrength),
|
|
6629
6629
|
ImageInserter: output.imageInserter !== undefined && output.imageInserter !== null
|
|
6630
6630
|
? deserializeAws_restJson1ImageInserter(output.imageInserter, context)
|
|
6631
6631
|
: undefined,
|
|
6632
6632
|
InputClippings: output.inputClippings !== undefined && output.inputClippings !== null
|
|
6633
6633
|
? deserializeAws_restJson1__listOfInputClipping(output.inputClippings, context)
|
|
6634
6634
|
: undefined,
|
|
6635
|
-
InputScanType: smithy_client_1.expectString(output.inputScanType),
|
|
6635
|
+
InputScanType: (0, smithy_client_1.expectString)(output.inputScanType),
|
|
6636
6636
|
Position: output.position !== undefined && output.position !== null
|
|
6637
6637
|
? deserializeAws_restJson1Rectangle(output.position, context)
|
|
6638
6638
|
: undefined,
|
|
6639
|
-
ProgramNumber: smithy_client_1.expectInt32(output.programNumber),
|
|
6640
|
-
PsiControl: smithy_client_1.expectString(output.psiControl),
|
|
6639
|
+
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
6640
|
+
PsiControl: (0, smithy_client_1.expectString)(output.psiControl),
|
|
6641
6641
|
SupplementalImps: output.supplementalImps !== undefined && output.supplementalImps !== null
|
|
6642
6642
|
? deserializeAws_restJson1__listOf__stringPatternS3ASSETMAPXml(output.supplementalImps, context)
|
|
6643
6643
|
: undefined,
|
|
6644
|
-
TimecodeSource: smithy_client_1.expectString(output.timecodeSource),
|
|
6645
|
-
TimecodeStart: smithy_client_1.expectString(output.timecodeStart),
|
|
6644
|
+
TimecodeSource: (0, smithy_client_1.expectString)(output.timecodeSource),
|
|
6645
|
+
TimecodeStart: (0, smithy_client_1.expectString)(output.timecodeStart),
|
|
6646
6646
|
VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
|
|
6647
6647
|
? deserializeAws_restJson1VideoSelector(output.videoSelector, context)
|
|
6648
6648
|
: undefined,
|
|
@@ -6650,16 +6650,16 @@ const deserializeAws_restJson1Input = (output, context) => {
|
|
|
6650
6650
|
};
|
|
6651
6651
|
const deserializeAws_restJson1InputClipping = (output, context) => {
|
|
6652
6652
|
return {
|
|
6653
|
-
EndTimecode: smithy_client_1.expectString(output.endTimecode),
|
|
6654
|
-
StartTimecode: smithy_client_1.expectString(output.startTimecode),
|
|
6653
|
+
EndTimecode: (0, smithy_client_1.expectString)(output.endTimecode),
|
|
6654
|
+
StartTimecode: (0, smithy_client_1.expectString)(output.startTimecode),
|
|
6655
6655
|
};
|
|
6656
6656
|
};
|
|
6657
6657
|
const deserializeAws_restJson1InputDecryptionSettings = (output, context) => {
|
|
6658
6658
|
return {
|
|
6659
|
-
DecryptionMode: smithy_client_1.expectString(output.decryptionMode),
|
|
6660
|
-
EncryptedDecryptionKey: smithy_client_1.expectString(output.encryptedDecryptionKey),
|
|
6661
|
-
InitializationVector: smithy_client_1.expectString(output.initializationVector),
|
|
6662
|
-
KmsKeyRegion: smithy_client_1.expectString(output.kmsKeyRegion),
|
|
6659
|
+
DecryptionMode: (0, smithy_client_1.expectString)(output.decryptionMode),
|
|
6660
|
+
EncryptedDecryptionKey: (0, smithy_client_1.expectString)(output.encryptedDecryptionKey),
|
|
6661
|
+
InitializationVector: (0, smithy_client_1.expectString)(output.initializationVector),
|
|
6662
|
+
KmsKeyRegion: (0, smithy_client_1.expectString)(output.kmsKeyRegion),
|
|
6663
6663
|
};
|
|
6664
6664
|
};
|
|
6665
6665
|
const deserializeAws_restJson1InputTemplate = (output, context) => {
|
|
@@ -6676,25 +6676,25 @@ const deserializeAws_restJson1InputTemplate = (output, context) => {
|
|
|
6676
6676
|
Crop: output.crop !== undefined && output.crop !== null
|
|
6677
6677
|
? deserializeAws_restJson1Rectangle(output.crop, context)
|
|
6678
6678
|
: undefined,
|
|
6679
|
-
DeblockFilter: smithy_client_1.expectString(output.deblockFilter),
|
|
6680
|
-
DenoiseFilter: smithy_client_1.expectString(output.denoiseFilter),
|
|
6681
|
-
DolbyVisionMetadataXml: smithy_client_1.expectString(output.dolbyVisionMetadataXml),
|
|
6682
|
-
FilterEnable: smithy_client_1.expectString(output.filterEnable),
|
|
6683
|
-
FilterStrength: smithy_client_1.expectInt32(output.filterStrength),
|
|
6679
|
+
DeblockFilter: (0, smithy_client_1.expectString)(output.deblockFilter),
|
|
6680
|
+
DenoiseFilter: (0, smithy_client_1.expectString)(output.denoiseFilter),
|
|
6681
|
+
DolbyVisionMetadataXml: (0, smithy_client_1.expectString)(output.dolbyVisionMetadataXml),
|
|
6682
|
+
FilterEnable: (0, smithy_client_1.expectString)(output.filterEnable),
|
|
6683
|
+
FilterStrength: (0, smithy_client_1.expectInt32)(output.filterStrength),
|
|
6684
6684
|
ImageInserter: output.imageInserter !== undefined && output.imageInserter !== null
|
|
6685
6685
|
? deserializeAws_restJson1ImageInserter(output.imageInserter, context)
|
|
6686
6686
|
: undefined,
|
|
6687
6687
|
InputClippings: output.inputClippings !== undefined && output.inputClippings !== null
|
|
6688
6688
|
? deserializeAws_restJson1__listOfInputClipping(output.inputClippings, context)
|
|
6689
6689
|
: undefined,
|
|
6690
|
-
InputScanType: smithy_client_1.expectString(output.inputScanType),
|
|
6690
|
+
InputScanType: (0, smithy_client_1.expectString)(output.inputScanType),
|
|
6691
6691
|
Position: output.position !== undefined && output.position !== null
|
|
6692
6692
|
? deserializeAws_restJson1Rectangle(output.position, context)
|
|
6693
6693
|
: undefined,
|
|
6694
|
-
ProgramNumber: smithy_client_1.expectInt32(output.programNumber),
|
|
6695
|
-
PsiControl: smithy_client_1.expectString(output.psiControl),
|
|
6696
|
-
TimecodeSource: smithy_client_1.expectString(output.timecodeSource),
|
|
6697
|
-
TimecodeStart: smithy_client_1.expectString(output.timecodeStart),
|
|
6694
|
+
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
6695
|
+
PsiControl: (0, smithy_client_1.expectString)(output.psiControl),
|
|
6696
|
+
TimecodeSource: (0, smithy_client_1.expectString)(output.timecodeSource),
|
|
6697
|
+
TimecodeStart: (0, smithy_client_1.expectString)(output.timecodeStart),
|
|
6698
6698
|
VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
|
|
6699
6699
|
? deserializeAws_restJson1VideoSelector(output.videoSelector, context)
|
|
6700
6700
|
: undefined,
|
|
@@ -6702,17 +6702,17 @@ const deserializeAws_restJson1InputTemplate = (output, context) => {
|
|
|
6702
6702
|
};
|
|
6703
6703
|
const deserializeAws_restJson1InsertableImage = (output, context) => {
|
|
6704
6704
|
return {
|
|
6705
|
-
Duration: smithy_client_1.expectInt32(output.duration),
|
|
6706
|
-
FadeIn: smithy_client_1.expectInt32(output.fadeIn),
|
|
6707
|
-
FadeOut: smithy_client_1.expectInt32(output.fadeOut),
|
|
6708
|
-
Height: smithy_client_1.expectInt32(output.height),
|
|
6709
|
-
ImageInserterInput: smithy_client_1.expectString(output.imageInserterInput),
|
|
6710
|
-
ImageX: smithy_client_1.expectInt32(output.imageX),
|
|
6711
|
-
ImageY: smithy_client_1.expectInt32(output.imageY),
|
|
6712
|
-
Layer: smithy_client_1.expectInt32(output.layer),
|
|
6713
|
-
Opacity: smithy_client_1.expectInt32(output.opacity),
|
|
6714
|
-
StartTime: smithy_client_1.expectString(output.startTime),
|
|
6715
|
-
Width: smithy_client_1.expectInt32(output.width),
|
|
6705
|
+
Duration: (0, smithy_client_1.expectInt32)(output.duration),
|
|
6706
|
+
FadeIn: (0, smithy_client_1.expectInt32)(output.fadeIn),
|
|
6707
|
+
FadeOut: (0, smithy_client_1.expectInt32)(output.fadeOut),
|
|
6708
|
+
Height: (0, smithy_client_1.expectInt32)(output.height),
|
|
6709
|
+
ImageInserterInput: (0, smithy_client_1.expectString)(output.imageInserterInput),
|
|
6710
|
+
ImageX: (0, smithy_client_1.expectInt32)(output.imageX),
|
|
6711
|
+
ImageY: (0, smithy_client_1.expectInt32)(output.imageY),
|
|
6712
|
+
Layer: (0, smithy_client_1.expectInt32)(output.layer),
|
|
6713
|
+
Opacity: (0, smithy_client_1.expectInt32)(output.opacity),
|
|
6714
|
+
StartTime: (0, smithy_client_1.expectString)(output.startTime),
|
|
6715
|
+
Width: (0, smithy_client_1.expectInt32)(output.width),
|
|
6716
6716
|
};
|
|
6717
6717
|
};
|
|
6718
6718
|
const deserializeAws_restJson1Job = (output, context) => {
|
|
@@ -6720,40 +6720,40 @@ const deserializeAws_restJson1Job = (output, context) => {
|
|
|
6720
6720
|
AccelerationSettings: output.accelerationSettings !== undefined && output.accelerationSettings !== null
|
|
6721
6721
|
? deserializeAws_restJson1AccelerationSettings(output.accelerationSettings, context)
|
|
6722
6722
|
: undefined,
|
|
6723
|
-
AccelerationStatus: smithy_client_1.expectString(output.accelerationStatus),
|
|
6724
|
-
Arn: smithy_client_1.expectString(output.arn),
|
|
6725
|
-
BillingTagsSource: smithy_client_1.expectString(output.billingTagsSource),
|
|
6723
|
+
AccelerationStatus: (0, smithy_client_1.expectString)(output.accelerationStatus),
|
|
6724
|
+
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
6725
|
+
BillingTagsSource: (0, smithy_client_1.expectString)(output.billingTagsSource),
|
|
6726
6726
|
CreatedAt: output.createdAt !== undefined && output.createdAt !== null
|
|
6727
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.createdAt)))
|
|
6727
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.createdAt)))
|
|
6728
6728
|
: undefined,
|
|
6729
|
-
CurrentPhase: smithy_client_1.expectString(output.currentPhase),
|
|
6730
|
-
ErrorCode: smithy_client_1.expectInt32(output.errorCode),
|
|
6731
|
-
ErrorMessage: smithy_client_1.expectString(output.errorMessage),
|
|
6729
|
+
CurrentPhase: (0, smithy_client_1.expectString)(output.currentPhase),
|
|
6730
|
+
ErrorCode: (0, smithy_client_1.expectInt32)(output.errorCode),
|
|
6731
|
+
ErrorMessage: (0, smithy_client_1.expectString)(output.errorMessage),
|
|
6732
6732
|
HopDestinations: output.hopDestinations !== undefined && output.hopDestinations !== null
|
|
6733
6733
|
? deserializeAws_restJson1__listOfHopDestination(output.hopDestinations, context)
|
|
6734
6734
|
: undefined,
|
|
6735
|
-
Id: smithy_client_1.expectString(output.id),
|
|
6736
|
-
JobPercentComplete: smithy_client_1.expectInt32(output.jobPercentComplete),
|
|
6737
|
-
JobTemplate: smithy_client_1.expectString(output.jobTemplate),
|
|
6735
|
+
Id: (0, smithy_client_1.expectString)(output.id),
|
|
6736
|
+
JobPercentComplete: (0, smithy_client_1.expectInt32)(output.jobPercentComplete),
|
|
6737
|
+
JobTemplate: (0, smithy_client_1.expectString)(output.jobTemplate),
|
|
6738
6738
|
Messages: output.messages !== undefined && output.messages !== null
|
|
6739
6739
|
? deserializeAws_restJson1JobMessages(output.messages, context)
|
|
6740
6740
|
: undefined,
|
|
6741
6741
|
OutputGroupDetails: output.outputGroupDetails !== undefined && output.outputGroupDetails !== null
|
|
6742
6742
|
? deserializeAws_restJson1__listOfOutputGroupDetail(output.outputGroupDetails, context)
|
|
6743
6743
|
: undefined,
|
|
6744
|
-
Priority: smithy_client_1.expectInt32(output.priority),
|
|
6745
|
-
Queue: smithy_client_1.expectString(output.queue),
|
|
6744
|
+
Priority: (0, smithy_client_1.expectInt32)(output.priority),
|
|
6745
|
+
Queue: (0, smithy_client_1.expectString)(output.queue),
|
|
6746
6746
|
QueueTransitions: output.queueTransitions !== undefined && output.queueTransitions !== null
|
|
6747
6747
|
? deserializeAws_restJson1__listOfQueueTransition(output.queueTransitions, context)
|
|
6748
6748
|
: undefined,
|
|
6749
|
-
RetryCount: smithy_client_1.expectInt32(output.retryCount),
|
|
6750
|
-
Role: smithy_client_1.expectString(output.role),
|
|
6749
|
+
RetryCount: (0, smithy_client_1.expectInt32)(output.retryCount),
|
|
6750
|
+
Role: (0, smithy_client_1.expectString)(output.role),
|
|
6751
6751
|
Settings: output.settings !== undefined && output.settings !== null
|
|
6752
6752
|
? deserializeAws_restJson1JobSettings(output.settings, context)
|
|
6753
6753
|
: undefined,
|
|
6754
|
-
SimulateReservedQueue: smithy_client_1.expectString(output.simulateReservedQueue),
|
|
6755
|
-
Status: smithy_client_1.expectString(output.status),
|
|
6756
|
-
StatusUpdateInterval: smithy_client_1.expectString(output.statusUpdateInterval),
|
|
6754
|
+
SimulateReservedQueue: (0, smithy_client_1.expectString)(output.simulateReservedQueue),
|
|
6755
|
+
Status: (0, smithy_client_1.expectString)(output.status),
|
|
6756
|
+
StatusUpdateInterval: (0, smithy_client_1.expectString)(output.statusUpdateInterval),
|
|
6757
6757
|
Timing: output.timing !== undefined && output.timing !== null
|
|
6758
6758
|
? deserializeAws_restJson1Timing(output.timing, context)
|
|
6759
6759
|
: undefined,
|
|
@@ -6774,7 +6774,7 @@ const deserializeAws_restJson1JobMessages = (output, context) => {
|
|
|
6774
6774
|
};
|
|
6775
6775
|
const deserializeAws_restJson1JobSettings = (output, context) => {
|
|
6776
6776
|
return {
|
|
6777
|
-
AdAvailOffset: smithy_client_1.expectInt32(output.adAvailOffset),
|
|
6777
|
+
AdAvailOffset: (0, smithy_client_1.expectInt32)(output.adAvailOffset),
|
|
6778
6778
|
AvailBlanking: output.availBlanking !== undefined && output.availBlanking !== null
|
|
6779
6779
|
? deserializeAws_restJson1AvailBlanking(output.availBlanking, context)
|
|
6780
6780
|
: undefined,
|
|
@@ -6815,31 +6815,31 @@ const deserializeAws_restJson1JobTemplate = (output, context) => {
|
|
|
6815
6815
|
AccelerationSettings: output.accelerationSettings !== undefined && output.accelerationSettings !== null
|
|
6816
6816
|
? deserializeAws_restJson1AccelerationSettings(output.accelerationSettings, context)
|
|
6817
6817
|
: undefined,
|
|
6818
|
-
Arn: smithy_client_1.expectString(output.arn),
|
|
6819
|
-
Category: smithy_client_1.expectString(output.category),
|
|
6818
|
+
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
6819
|
+
Category: (0, smithy_client_1.expectString)(output.category),
|
|
6820
6820
|
CreatedAt: output.createdAt !== undefined && output.createdAt !== null
|
|
6821
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.createdAt)))
|
|
6821
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.createdAt)))
|
|
6822
6822
|
: undefined,
|
|
6823
|
-
Description: smithy_client_1.expectString(output.description),
|
|
6823
|
+
Description: (0, smithy_client_1.expectString)(output.description),
|
|
6824
6824
|
HopDestinations: output.hopDestinations !== undefined && output.hopDestinations !== null
|
|
6825
6825
|
? deserializeAws_restJson1__listOfHopDestination(output.hopDestinations, context)
|
|
6826
6826
|
: undefined,
|
|
6827
6827
|
LastUpdated: output.lastUpdated !== undefined && output.lastUpdated !== null
|
|
6828
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.lastUpdated)))
|
|
6828
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdated)))
|
|
6829
6829
|
: undefined,
|
|
6830
|
-
Name: smithy_client_1.expectString(output.name),
|
|
6831
|
-
Priority: smithy_client_1.expectInt32(output.priority),
|
|
6832
|
-
Queue: smithy_client_1.expectString(output.queue),
|
|
6830
|
+
Name: (0, smithy_client_1.expectString)(output.name),
|
|
6831
|
+
Priority: (0, smithy_client_1.expectInt32)(output.priority),
|
|
6832
|
+
Queue: (0, smithy_client_1.expectString)(output.queue),
|
|
6833
6833
|
Settings: output.settings !== undefined && output.settings !== null
|
|
6834
6834
|
? deserializeAws_restJson1JobTemplateSettings(output.settings, context)
|
|
6835
6835
|
: undefined,
|
|
6836
|
-
StatusUpdateInterval: smithy_client_1.expectString(output.statusUpdateInterval),
|
|
6837
|
-
Type: smithy_client_1.expectString(output.type),
|
|
6836
|
+
StatusUpdateInterval: (0, smithy_client_1.expectString)(output.statusUpdateInterval),
|
|
6837
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
6838
6838
|
};
|
|
6839
6839
|
};
|
|
6840
6840
|
const deserializeAws_restJson1JobTemplateSettings = (output, context) => {
|
|
6841
6841
|
return {
|
|
6842
|
-
AdAvailOffset: smithy_client_1.expectInt32(output.adAvailOffset),
|
|
6842
|
+
AdAvailOffset: (0, smithy_client_1.expectInt32)(output.adAvailOffset),
|
|
6843
6843
|
AvailBlanking: output.availBlanking !== undefined && output.availBlanking !== null
|
|
6844
6844
|
? deserializeAws_restJson1AvailBlanking(output.availBlanking, context)
|
|
6845
6845
|
: undefined,
|
|
@@ -6877,37 +6877,37 @@ const deserializeAws_restJson1JobTemplateSettings = (output, context) => {
|
|
|
6877
6877
|
};
|
|
6878
6878
|
const deserializeAws_restJson1KantarWatermarkSettings = (output, context) => {
|
|
6879
6879
|
return {
|
|
6880
|
-
ChannelName: smithy_client_1.expectString(output.channelName),
|
|
6881
|
-
ContentReference: smithy_client_1.expectString(output.contentReference),
|
|
6882
|
-
CredentialsSecretName: smithy_client_1.expectString(output.credentialsSecretName),
|
|
6883
|
-
FileOffset: smithy_client_1.limitedParseDouble(output.fileOffset),
|
|
6884
|
-
KantarLicenseId: smithy_client_1.expectInt32(output.kantarLicenseId),
|
|
6885
|
-
KantarServerUrl: smithy_client_1.expectString(output.kantarServerUrl),
|
|
6886
|
-
LogDestination: smithy_client_1.expectString(output.logDestination),
|
|
6887
|
-
Metadata3: smithy_client_1.expectString(output.metadata3),
|
|
6888
|
-
Metadata4: smithy_client_1.expectString(output.metadata4),
|
|
6889
|
-
Metadata5: smithy_client_1.expectString(output.metadata5),
|
|
6890
|
-
Metadata6: smithy_client_1.expectString(output.metadata6),
|
|
6891
|
-
Metadata7: smithy_client_1.expectString(output.metadata7),
|
|
6892
|
-
Metadata8: smithy_client_1.expectString(output.metadata8),
|
|
6880
|
+
ChannelName: (0, smithy_client_1.expectString)(output.channelName),
|
|
6881
|
+
ContentReference: (0, smithy_client_1.expectString)(output.contentReference),
|
|
6882
|
+
CredentialsSecretName: (0, smithy_client_1.expectString)(output.credentialsSecretName),
|
|
6883
|
+
FileOffset: (0, smithy_client_1.limitedParseDouble)(output.fileOffset),
|
|
6884
|
+
KantarLicenseId: (0, smithy_client_1.expectInt32)(output.kantarLicenseId),
|
|
6885
|
+
KantarServerUrl: (0, smithy_client_1.expectString)(output.kantarServerUrl),
|
|
6886
|
+
LogDestination: (0, smithy_client_1.expectString)(output.logDestination),
|
|
6887
|
+
Metadata3: (0, smithy_client_1.expectString)(output.metadata3),
|
|
6888
|
+
Metadata4: (0, smithy_client_1.expectString)(output.metadata4),
|
|
6889
|
+
Metadata5: (0, smithy_client_1.expectString)(output.metadata5),
|
|
6890
|
+
Metadata6: (0, smithy_client_1.expectString)(output.metadata6),
|
|
6891
|
+
Metadata7: (0, smithy_client_1.expectString)(output.metadata7),
|
|
6892
|
+
Metadata8: (0, smithy_client_1.expectString)(output.metadata8),
|
|
6893
6893
|
};
|
|
6894
6894
|
};
|
|
6895
6895
|
const deserializeAws_restJson1M2tsScte35Esam = (output, context) => {
|
|
6896
6896
|
return {
|
|
6897
|
-
Scte35EsamPid: smithy_client_1.expectInt32(output.scte35EsamPid),
|
|
6897
|
+
Scte35EsamPid: (0, smithy_client_1.expectInt32)(output.scte35EsamPid),
|
|
6898
6898
|
};
|
|
6899
6899
|
};
|
|
6900
6900
|
const deserializeAws_restJson1M2tsSettings = (output, context) => {
|
|
6901
6901
|
return {
|
|
6902
|
-
AudioBufferModel: smithy_client_1.expectString(output.audioBufferModel),
|
|
6903
|
-
AudioDuration: smithy_client_1.expectString(output.audioDuration),
|
|
6904
|
-
AudioFramesPerPes: smithy_client_1.expectInt32(output.audioFramesPerPes),
|
|
6902
|
+
AudioBufferModel: (0, smithy_client_1.expectString)(output.audioBufferModel),
|
|
6903
|
+
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
6904
|
+
AudioFramesPerPes: (0, smithy_client_1.expectInt32)(output.audioFramesPerPes),
|
|
6905
6905
|
AudioPids: output.audioPids !== undefined && output.audioPids !== null
|
|
6906
6906
|
? deserializeAws_restJson1__listOf__integerMin32Max8182(output.audioPids, context)
|
|
6907
6907
|
: undefined,
|
|
6908
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
6909
|
-
BufferModel: smithy_client_1.expectString(output.bufferModel),
|
|
6910
|
-
DataPTSControl: smithy_client_1.expectString(output.dataPTSControl),
|
|
6908
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
6909
|
+
BufferModel: (0, smithy_client_1.expectString)(output.bufferModel),
|
|
6910
|
+
DataPTSControl: (0, smithy_client_1.expectString)(output.dataPTSControl),
|
|
6911
6911
|
DvbNitSettings: output.dvbNitSettings !== undefined && output.dvbNitSettings !== null
|
|
6912
6912
|
? deserializeAws_restJson1DvbNitSettings(output.dvbNitSettings, context)
|
|
6913
6913
|
: undefined,
|
|
@@ -6920,60 +6920,60 @@ const deserializeAws_restJson1M2tsSettings = (output, context) => {
|
|
|
6920
6920
|
DvbTdtSettings: output.dvbTdtSettings !== undefined && output.dvbTdtSettings !== null
|
|
6921
6921
|
? deserializeAws_restJson1DvbTdtSettings(output.dvbTdtSettings, context)
|
|
6922
6922
|
: undefined,
|
|
6923
|
-
DvbTeletextPid: smithy_client_1.expectInt32(output.dvbTeletextPid),
|
|
6924
|
-
EbpAudioInterval: smithy_client_1.expectString(output.ebpAudioInterval),
|
|
6925
|
-
EbpPlacement: smithy_client_1.expectString(output.ebpPlacement),
|
|
6926
|
-
EsRateInPes: smithy_client_1.expectString(output.esRateInPes),
|
|
6927
|
-
ForceTsVideoEbpOrder: smithy_client_1.expectString(output.forceTsVideoEbpOrder),
|
|
6928
|
-
FragmentTime: smithy_client_1.limitedParseDouble(output.fragmentTime),
|
|
6929
|
-
MaxPcrInterval: smithy_client_1.expectInt32(output.maxPcrInterval),
|
|
6930
|
-
MinEbpInterval: smithy_client_1.expectInt32(output.minEbpInterval),
|
|
6931
|
-
NielsenId3: smithy_client_1.expectString(output.nielsenId3),
|
|
6932
|
-
NullPacketBitrate: smithy_client_1.limitedParseDouble(output.nullPacketBitrate),
|
|
6933
|
-
PatInterval: smithy_client_1.expectInt32(output.patInterval),
|
|
6934
|
-
PcrControl: smithy_client_1.expectString(output.pcrControl),
|
|
6935
|
-
PcrPid: smithy_client_1.expectInt32(output.pcrPid),
|
|
6936
|
-
PmtInterval: smithy_client_1.expectInt32(output.pmtInterval),
|
|
6937
|
-
PmtPid: smithy_client_1.expectInt32(output.pmtPid),
|
|
6938
|
-
PrivateMetadataPid: smithy_client_1.expectInt32(output.privateMetadataPid),
|
|
6939
|
-
ProgramNumber: smithy_client_1.expectInt32(output.programNumber),
|
|
6940
|
-
RateMode: smithy_client_1.expectString(output.rateMode),
|
|
6923
|
+
DvbTeletextPid: (0, smithy_client_1.expectInt32)(output.dvbTeletextPid),
|
|
6924
|
+
EbpAudioInterval: (0, smithy_client_1.expectString)(output.ebpAudioInterval),
|
|
6925
|
+
EbpPlacement: (0, smithy_client_1.expectString)(output.ebpPlacement),
|
|
6926
|
+
EsRateInPes: (0, smithy_client_1.expectString)(output.esRateInPes),
|
|
6927
|
+
ForceTsVideoEbpOrder: (0, smithy_client_1.expectString)(output.forceTsVideoEbpOrder),
|
|
6928
|
+
FragmentTime: (0, smithy_client_1.limitedParseDouble)(output.fragmentTime),
|
|
6929
|
+
MaxPcrInterval: (0, smithy_client_1.expectInt32)(output.maxPcrInterval),
|
|
6930
|
+
MinEbpInterval: (0, smithy_client_1.expectInt32)(output.minEbpInterval),
|
|
6931
|
+
NielsenId3: (0, smithy_client_1.expectString)(output.nielsenId3),
|
|
6932
|
+
NullPacketBitrate: (0, smithy_client_1.limitedParseDouble)(output.nullPacketBitrate),
|
|
6933
|
+
PatInterval: (0, smithy_client_1.expectInt32)(output.patInterval),
|
|
6934
|
+
PcrControl: (0, smithy_client_1.expectString)(output.pcrControl),
|
|
6935
|
+
PcrPid: (0, smithy_client_1.expectInt32)(output.pcrPid),
|
|
6936
|
+
PmtInterval: (0, smithy_client_1.expectInt32)(output.pmtInterval),
|
|
6937
|
+
PmtPid: (0, smithy_client_1.expectInt32)(output.pmtPid),
|
|
6938
|
+
PrivateMetadataPid: (0, smithy_client_1.expectInt32)(output.privateMetadataPid),
|
|
6939
|
+
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
6940
|
+
RateMode: (0, smithy_client_1.expectString)(output.rateMode),
|
|
6941
6941
|
Scte35Esam: output.scte35Esam !== undefined && output.scte35Esam !== null
|
|
6942
6942
|
? deserializeAws_restJson1M2tsScte35Esam(output.scte35Esam, context)
|
|
6943
6943
|
: undefined,
|
|
6944
|
-
Scte35Pid: smithy_client_1.expectInt32(output.scte35Pid),
|
|
6945
|
-
Scte35Source: smithy_client_1.expectString(output.scte35Source),
|
|
6946
|
-
SegmentationMarkers: smithy_client_1.expectString(output.segmentationMarkers),
|
|
6947
|
-
SegmentationStyle: smithy_client_1.expectString(output.segmentationStyle),
|
|
6948
|
-
SegmentationTime: smithy_client_1.limitedParseDouble(output.segmentationTime),
|
|
6949
|
-
TimedMetadataPid: smithy_client_1.expectInt32(output.timedMetadataPid),
|
|
6950
|
-
TransportStreamId: smithy_client_1.expectInt32(output.transportStreamId),
|
|
6951
|
-
VideoPid: smithy_client_1.expectInt32(output.videoPid),
|
|
6944
|
+
Scte35Pid: (0, smithy_client_1.expectInt32)(output.scte35Pid),
|
|
6945
|
+
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
6946
|
+
SegmentationMarkers: (0, smithy_client_1.expectString)(output.segmentationMarkers),
|
|
6947
|
+
SegmentationStyle: (0, smithy_client_1.expectString)(output.segmentationStyle),
|
|
6948
|
+
SegmentationTime: (0, smithy_client_1.limitedParseDouble)(output.segmentationTime),
|
|
6949
|
+
TimedMetadataPid: (0, smithy_client_1.expectInt32)(output.timedMetadataPid),
|
|
6950
|
+
TransportStreamId: (0, smithy_client_1.expectInt32)(output.transportStreamId),
|
|
6951
|
+
VideoPid: (0, smithy_client_1.expectInt32)(output.videoPid),
|
|
6952
6952
|
};
|
|
6953
6953
|
};
|
|
6954
6954
|
const deserializeAws_restJson1M3u8Settings = (output, context) => {
|
|
6955
6955
|
return {
|
|
6956
|
-
AudioDuration: smithy_client_1.expectString(output.audioDuration),
|
|
6957
|
-
AudioFramesPerPes: smithy_client_1.expectInt32(output.audioFramesPerPes),
|
|
6956
|
+
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
6957
|
+
AudioFramesPerPes: (0, smithy_client_1.expectInt32)(output.audioFramesPerPes),
|
|
6958
6958
|
AudioPids: output.audioPids !== undefined && output.audioPids !== null
|
|
6959
6959
|
? deserializeAws_restJson1__listOf__integerMin32Max8182(output.audioPids, context)
|
|
6960
6960
|
: undefined,
|
|
6961
|
-
DataPTSControl: smithy_client_1.expectString(output.dataPTSControl),
|
|
6962
|
-
MaxPcrInterval: smithy_client_1.expectInt32(output.maxPcrInterval),
|
|
6963
|
-
NielsenId3: smithy_client_1.expectString(output.nielsenId3),
|
|
6964
|
-
PatInterval: smithy_client_1.expectInt32(output.patInterval),
|
|
6965
|
-
PcrControl: smithy_client_1.expectString(output.pcrControl),
|
|
6966
|
-
PcrPid: smithy_client_1.expectInt32(output.pcrPid),
|
|
6967
|
-
PmtInterval: smithy_client_1.expectInt32(output.pmtInterval),
|
|
6968
|
-
PmtPid: smithy_client_1.expectInt32(output.pmtPid),
|
|
6969
|
-
PrivateMetadataPid: smithy_client_1.expectInt32(output.privateMetadataPid),
|
|
6970
|
-
ProgramNumber: smithy_client_1.expectInt32(output.programNumber),
|
|
6971
|
-
Scte35Pid: smithy_client_1.expectInt32(output.scte35Pid),
|
|
6972
|
-
Scte35Source: smithy_client_1.expectString(output.scte35Source),
|
|
6973
|
-
TimedMetadata: smithy_client_1.expectString(output.timedMetadata),
|
|
6974
|
-
TimedMetadataPid: smithy_client_1.expectInt32(output.timedMetadataPid),
|
|
6975
|
-
TransportStreamId: smithy_client_1.expectInt32(output.transportStreamId),
|
|
6976
|
-
VideoPid: smithy_client_1.expectInt32(output.videoPid),
|
|
6961
|
+
DataPTSControl: (0, smithy_client_1.expectString)(output.dataPTSControl),
|
|
6962
|
+
MaxPcrInterval: (0, smithy_client_1.expectInt32)(output.maxPcrInterval),
|
|
6963
|
+
NielsenId3: (0, smithy_client_1.expectString)(output.nielsenId3),
|
|
6964
|
+
PatInterval: (0, smithy_client_1.expectInt32)(output.patInterval),
|
|
6965
|
+
PcrControl: (0, smithy_client_1.expectString)(output.pcrControl),
|
|
6966
|
+
PcrPid: (0, smithy_client_1.expectInt32)(output.pcrPid),
|
|
6967
|
+
PmtInterval: (0, smithy_client_1.expectInt32)(output.pmtInterval),
|
|
6968
|
+
PmtPid: (0, smithy_client_1.expectInt32)(output.pmtPid),
|
|
6969
|
+
PrivateMetadataPid: (0, smithy_client_1.expectInt32)(output.privateMetadataPid),
|
|
6970
|
+
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
6971
|
+
Scte35Pid: (0, smithy_client_1.expectInt32)(output.scte35Pid),
|
|
6972
|
+
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
6973
|
+
TimedMetadata: (0, smithy_client_1.expectString)(output.timedMetadata),
|
|
6974
|
+
TimedMetadataPid: (0, smithy_client_1.expectInt32)(output.timedMetadataPid),
|
|
6975
|
+
TransportStreamId: (0, smithy_client_1.expectInt32)(output.transportStreamId),
|
|
6976
|
+
VideoPid: (0, smithy_client_1.expectInt32)(output.videoPid),
|
|
6977
6977
|
};
|
|
6978
6978
|
};
|
|
6979
6979
|
const deserializeAws_restJson1MotionImageInserter = (output, context) => {
|
|
@@ -6981,111 +6981,111 @@ const deserializeAws_restJson1MotionImageInserter = (output, context) => {
|
|
|
6981
6981
|
Framerate: output.framerate !== undefined && output.framerate !== null
|
|
6982
6982
|
? deserializeAws_restJson1MotionImageInsertionFramerate(output.framerate, context)
|
|
6983
6983
|
: undefined,
|
|
6984
|
-
Input: smithy_client_1.expectString(output.input),
|
|
6985
|
-
InsertionMode: smithy_client_1.expectString(output.insertionMode),
|
|
6984
|
+
Input: (0, smithy_client_1.expectString)(output.input),
|
|
6985
|
+
InsertionMode: (0, smithy_client_1.expectString)(output.insertionMode),
|
|
6986
6986
|
Offset: output.offset !== undefined && output.offset !== null
|
|
6987
6987
|
? deserializeAws_restJson1MotionImageInsertionOffset(output.offset, context)
|
|
6988
6988
|
: undefined,
|
|
6989
|
-
Playback: smithy_client_1.expectString(output.playback),
|
|
6990
|
-
StartTime: smithy_client_1.expectString(output.startTime),
|
|
6989
|
+
Playback: (0, smithy_client_1.expectString)(output.playback),
|
|
6990
|
+
StartTime: (0, smithy_client_1.expectString)(output.startTime),
|
|
6991
6991
|
};
|
|
6992
6992
|
};
|
|
6993
6993
|
const deserializeAws_restJson1MotionImageInsertionFramerate = (output, context) => {
|
|
6994
6994
|
return {
|
|
6995
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
6996
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
6995
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
6996
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
6997
6997
|
};
|
|
6998
6998
|
};
|
|
6999
6999
|
const deserializeAws_restJson1MotionImageInsertionOffset = (output, context) => {
|
|
7000
7000
|
return {
|
|
7001
|
-
ImageX: smithy_client_1.expectInt32(output.imageX),
|
|
7002
|
-
ImageY: smithy_client_1.expectInt32(output.imageY),
|
|
7001
|
+
ImageX: (0, smithy_client_1.expectInt32)(output.imageX),
|
|
7002
|
+
ImageY: (0, smithy_client_1.expectInt32)(output.imageY),
|
|
7003
7003
|
};
|
|
7004
7004
|
};
|
|
7005
7005
|
const deserializeAws_restJson1MovSettings = (output, context) => {
|
|
7006
7006
|
return {
|
|
7007
|
-
ClapAtom: smithy_client_1.expectString(output.clapAtom),
|
|
7008
|
-
CslgAtom: smithy_client_1.expectString(output.cslgAtom),
|
|
7009
|
-
Mpeg2FourCCControl: smithy_client_1.expectString(output.mpeg2FourCCControl),
|
|
7010
|
-
PaddingControl: smithy_client_1.expectString(output.paddingControl),
|
|
7011
|
-
Reference: smithy_client_1.expectString(output.reference),
|
|
7007
|
+
ClapAtom: (0, smithy_client_1.expectString)(output.clapAtom),
|
|
7008
|
+
CslgAtom: (0, smithy_client_1.expectString)(output.cslgAtom),
|
|
7009
|
+
Mpeg2FourCCControl: (0, smithy_client_1.expectString)(output.mpeg2FourCCControl),
|
|
7010
|
+
PaddingControl: (0, smithy_client_1.expectString)(output.paddingControl),
|
|
7011
|
+
Reference: (0, smithy_client_1.expectString)(output.reference),
|
|
7012
7012
|
};
|
|
7013
7013
|
};
|
|
7014
7014
|
const deserializeAws_restJson1Mp2Settings = (output, context) => {
|
|
7015
7015
|
return {
|
|
7016
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7017
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
7018
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
7016
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7017
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
7018
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
7019
7019
|
};
|
|
7020
7020
|
};
|
|
7021
7021
|
const deserializeAws_restJson1Mp3Settings = (output, context) => {
|
|
7022
7022
|
return {
|
|
7023
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7024
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
7025
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
7026
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
7027
|
-
VbrQuality: smithy_client_1.expectInt32(output.vbrQuality),
|
|
7023
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7024
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
7025
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
7026
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
7027
|
+
VbrQuality: (0, smithy_client_1.expectInt32)(output.vbrQuality),
|
|
7028
7028
|
};
|
|
7029
7029
|
};
|
|
7030
7030
|
const deserializeAws_restJson1Mp4Settings = (output, context) => {
|
|
7031
7031
|
return {
|
|
7032
|
-
AudioDuration: smithy_client_1.expectString(output.audioDuration),
|
|
7033
|
-
CslgAtom: smithy_client_1.expectString(output.cslgAtom),
|
|
7034
|
-
CttsVersion: smithy_client_1.expectInt32(output.cttsVersion),
|
|
7035
|
-
FreeSpaceBox: smithy_client_1.expectString(output.freeSpaceBox),
|
|
7036
|
-
MoovPlacement: smithy_client_1.expectString(output.moovPlacement),
|
|
7037
|
-
Mp4MajorBrand: smithy_client_1.expectString(output.mp4MajorBrand),
|
|
7032
|
+
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
7033
|
+
CslgAtom: (0, smithy_client_1.expectString)(output.cslgAtom),
|
|
7034
|
+
CttsVersion: (0, smithy_client_1.expectInt32)(output.cttsVersion),
|
|
7035
|
+
FreeSpaceBox: (0, smithy_client_1.expectString)(output.freeSpaceBox),
|
|
7036
|
+
MoovPlacement: (0, smithy_client_1.expectString)(output.moovPlacement),
|
|
7037
|
+
Mp4MajorBrand: (0, smithy_client_1.expectString)(output.mp4MajorBrand),
|
|
7038
7038
|
};
|
|
7039
7039
|
};
|
|
7040
7040
|
const deserializeAws_restJson1MpdSettings = (output, context) => {
|
|
7041
7041
|
return {
|
|
7042
|
-
AccessibilityCaptionHints: smithy_client_1.expectString(output.accessibilityCaptionHints),
|
|
7043
|
-
AudioDuration: smithy_client_1.expectString(output.audioDuration),
|
|
7044
|
-
CaptionContainerType: smithy_client_1.expectString(output.captionContainerType),
|
|
7045
|
-
Scte35Esam: smithy_client_1.expectString(output.scte35Esam),
|
|
7046
|
-
Scte35Source: smithy_client_1.expectString(output.scte35Source),
|
|
7047
|
-
TimedMetadata: smithy_client_1.expectString(output.timedMetadata),
|
|
7042
|
+
AccessibilityCaptionHints: (0, smithy_client_1.expectString)(output.accessibilityCaptionHints),
|
|
7043
|
+
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
7044
|
+
CaptionContainerType: (0, smithy_client_1.expectString)(output.captionContainerType),
|
|
7045
|
+
Scte35Esam: (0, smithy_client_1.expectString)(output.scte35Esam),
|
|
7046
|
+
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
7047
|
+
TimedMetadata: (0, smithy_client_1.expectString)(output.timedMetadata),
|
|
7048
7048
|
};
|
|
7049
7049
|
};
|
|
7050
7050
|
const deserializeAws_restJson1Mpeg2Settings = (output, context) => {
|
|
7051
7051
|
return {
|
|
7052
|
-
AdaptiveQuantization: smithy_client_1.expectString(output.adaptiveQuantization),
|
|
7053
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7054
|
-
CodecLevel: smithy_client_1.expectString(output.codecLevel),
|
|
7055
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
7056
|
-
DynamicSubGop: smithy_client_1.expectString(output.dynamicSubGop),
|
|
7057
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7058
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7059
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7060
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7061
|
-
GopClosedCadence: smithy_client_1.expectInt32(output.gopClosedCadence),
|
|
7062
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
7063
|
-
GopSizeUnits: smithy_client_1.expectString(output.gopSizeUnits),
|
|
7064
|
-
HrdBufferInitialFillPercentage: smithy_client_1.expectInt32(output.hrdBufferInitialFillPercentage),
|
|
7065
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
7066
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
7067
|
-
IntraDcPrecision: smithy_client_1.expectString(output.intraDcPrecision),
|
|
7068
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
7069
|
-
MinIInterval: smithy_client_1.expectInt32(output.minIInterval),
|
|
7070
|
-
NumberBFramesBetweenReferenceFrames: smithy_client_1.expectInt32(output.numberBFramesBetweenReferenceFrames),
|
|
7071
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
7072
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
7073
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
7074
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
7075
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
7076
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
7077
|
-
SceneChangeDetect: smithy_client_1.expectString(output.sceneChangeDetect),
|
|
7078
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
7079
|
-
Softness: smithy_client_1.expectInt32(output.softness),
|
|
7080
|
-
SpatialAdaptiveQuantization: smithy_client_1.expectString(output.spatialAdaptiveQuantization),
|
|
7081
|
-
Syntax: smithy_client_1.expectString(output.syntax),
|
|
7082
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
7083
|
-
TemporalAdaptiveQuantization: smithy_client_1.expectString(output.temporalAdaptiveQuantization),
|
|
7052
|
+
AdaptiveQuantization: (0, smithy_client_1.expectString)(output.adaptiveQuantization),
|
|
7053
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7054
|
+
CodecLevel: (0, smithy_client_1.expectString)(output.codecLevel),
|
|
7055
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
7056
|
+
DynamicSubGop: (0, smithy_client_1.expectString)(output.dynamicSubGop),
|
|
7057
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7058
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7059
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7060
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7061
|
+
GopClosedCadence: (0, smithy_client_1.expectInt32)(output.gopClosedCadence),
|
|
7062
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
7063
|
+
GopSizeUnits: (0, smithy_client_1.expectString)(output.gopSizeUnits),
|
|
7064
|
+
HrdBufferInitialFillPercentage: (0, smithy_client_1.expectInt32)(output.hrdBufferInitialFillPercentage),
|
|
7065
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
7066
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
7067
|
+
IntraDcPrecision: (0, smithy_client_1.expectString)(output.intraDcPrecision),
|
|
7068
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
7069
|
+
MinIInterval: (0, smithy_client_1.expectInt32)(output.minIInterval),
|
|
7070
|
+
NumberBFramesBetweenReferenceFrames: (0, smithy_client_1.expectInt32)(output.numberBFramesBetweenReferenceFrames),
|
|
7071
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
7072
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
7073
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
7074
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
7075
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
7076
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
7077
|
+
SceneChangeDetect: (0, smithy_client_1.expectString)(output.sceneChangeDetect),
|
|
7078
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
7079
|
+
Softness: (0, smithy_client_1.expectInt32)(output.softness),
|
|
7080
|
+
SpatialAdaptiveQuantization: (0, smithy_client_1.expectString)(output.spatialAdaptiveQuantization),
|
|
7081
|
+
Syntax: (0, smithy_client_1.expectString)(output.syntax),
|
|
7082
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
7083
|
+
TemporalAdaptiveQuantization: (0, smithy_client_1.expectString)(output.temporalAdaptiveQuantization),
|
|
7084
7084
|
};
|
|
7085
7085
|
};
|
|
7086
7086
|
const deserializeAws_restJson1MsSmoothAdditionalManifest = (output, context) => {
|
|
7087
7087
|
return {
|
|
7088
|
-
ManifestNameModifier: smithy_client_1.expectString(output.manifestNameModifier),
|
|
7088
|
+
ManifestNameModifier: (0, smithy_client_1.expectString)(output.manifestNameModifier),
|
|
7089
7089
|
SelectedOutputs: output.selectedOutputs !== undefined && output.selectedOutputs !== null
|
|
7090
7090
|
? deserializeAws_restJson1__listOf__stringMin1(output.selectedOutputs, context)
|
|
7091
7091
|
: undefined,
|
|
@@ -7103,23 +7103,23 @@ const deserializeAws_restJson1MsSmoothGroupSettings = (output, context) => {
|
|
|
7103
7103
|
AdditionalManifests: output.additionalManifests !== undefined && output.additionalManifests !== null
|
|
7104
7104
|
? deserializeAws_restJson1__listOfMsSmoothAdditionalManifest(output.additionalManifests, context)
|
|
7105
7105
|
: undefined,
|
|
7106
|
-
AudioDeduplication: smithy_client_1.expectString(output.audioDeduplication),
|
|
7107
|
-
Destination: smithy_client_1.expectString(output.destination),
|
|
7106
|
+
AudioDeduplication: (0, smithy_client_1.expectString)(output.audioDeduplication),
|
|
7107
|
+
Destination: (0, smithy_client_1.expectString)(output.destination),
|
|
7108
7108
|
DestinationSettings: output.destinationSettings !== undefined && output.destinationSettings !== null
|
|
7109
7109
|
? deserializeAws_restJson1DestinationSettings(output.destinationSettings, context)
|
|
7110
7110
|
: undefined,
|
|
7111
7111
|
Encryption: output.encryption !== undefined && output.encryption !== null
|
|
7112
7112
|
? deserializeAws_restJson1MsSmoothEncryptionSettings(output.encryption, context)
|
|
7113
7113
|
: undefined,
|
|
7114
|
-
FragmentLength: smithy_client_1.expectInt32(output.fragmentLength),
|
|
7115
|
-
FragmentLengthControl: smithy_client_1.expectString(output.fragmentLengthControl),
|
|
7116
|
-
ManifestEncoding: smithy_client_1.expectString(output.manifestEncoding),
|
|
7114
|
+
FragmentLength: (0, smithy_client_1.expectInt32)(output.fragmentLength),
|
|
7115
|
+
FragmentLengthControl: (0, smithy_client_1.expectString)(output.fragmentLengthControl),
|
|
7116
|
+
ManifestEncoding: (0, smithy_client_1.expectString)(output.manifestEncoding),
|
|
7117
7117
|
};
|
|
7118
7118
|
};
|
|
7119
7119
|
const deserializeAws_restJson1MxfSettings = (output, context) => {
|
|
7120
7120
|
return {
|
|
7121
|
-
AfdSignaling: smithy_client_1.expectString(output.afdSignaling),
|
|
7122
|
-
Profile: smithy_client_1.expectString(output.profile),
|
|
7121
|
+
AfdSignaling: (0, smithy_client_1.expectString)(output.afdSignaling),
|
|
7122
|
+
Profile: (0, smithy_client_1.expectString)(output.profile),
|
|
7123
7123
|
XavcProfileSettings: output.xavcProfileSettings !== undefined && output.xavcProfileSettings !== null
|
|
7124
7124
|
? deserializeAws_restJson1MxfXavcProfileSettings(output.xavcProfileSettings, context)
|
|
7125
7125
|
: undefined,
|
|
@@ -7127,42 +7127,42 @@ const deserializeAws_restJson1MxfSettings = (output, context) => {
|
|
|
7127
7127
|
};
|
|
7128
7128
|
const deserializeAws_restJson1MxfXavcProfileSettings = (output, context) => {
|
|
7129
7129
|
return {
|
|
7130
|
-
DurationMode: smithy_client_1.expectString(output.durationMode),
|
|
7131
|
-
MaxAncDataSize: smithy_client_1.expectInt32(output.maxAncDataSize),
|
|
7130
|
+
DurationMode: (0, smithy_client_1.expectString)(output.durationMode),
|
|
7131
|
+
MaxAncDataSize: (0, smithy_client_1.expectInt32)(output.maxAncDataSize),
|
|
7132
7132
|
};
|
|
7133
7133
|
};
|
|
7134
7134
|
const deserializeAws_restJson1NexGuardFileMarkerSettings = (output, context) => {
|
|
7135
7135
|
return {
|
|
7136
|
-
License: smithy_client_1.expectString(output.license),
|
|
7137
|
-
Payload: smithy_client_1.expectInt32(output.payload),
|
|
7138
|
-
Preset: smithy_client_1.expectString(output.preset),
|
|
7139
|
-
Strength: smithy_client_1.expectString(output.strength),
|
|
7136
|
+
License: (0, smithy_client_1.expectString)(output.license),
|
|
7137
|
+
Payload: (0, smithy_client_1.expectInt32)(output.payload),
|
|
7138
|
+
Preset: (0, smithy_client_1.expectString)(output.preset),
|
|
7139
|
+
Strength: (0, smithy_client_1.expectString)(output.strength),
|
|
7140
7140
|
};
|
|
7141
7141
|
};
|
|
7142
7142
|
const deserializeAws_restJson1NielsenConfiguration = (output, context) => {
|
|
7143
7143
|
return {
|
|
7144
|
-
BreakoutCode: smithy_client_1.expectInt32(output.breakoutCode),
|
|
7145
|
-
DistributorId: smithy_client_1.expectString(output.distributorId),
|
|
7144
|
+
BreakoutCode: (0, smithy_client_1.expectInt32)(output.breakoutCode),
|
|
7145
|
+
DistributorId: (0, smithy_client_1.expectString)(output.distributorId),
|
|
7146
7146
|
};
|
|
7147
7147
|
};
|
|
7148
7148
|
const deserializeAws_restJson1NielsenNonLinearWatermarkSettings = (output, context) => {
|
|
7149
7149
|
return {
|
|
7150
|
-
ActiveWatermarkProcess: smithy_client_1.expectString(output.activeWatermarkProcess),
|
|
7151
|
-
AdiFilename: smithy_client_1.expectString(output.adiFilename),
|
|
7152
|
-
AssetId: smithy_client_1.expectString(output.assetId),
|
|
7153
|
-
AssetName: smithy_client_1.expectString(output.assetName),
|
|
7154
|
-
CbetSourceId: smithy_client_1.expectString(output.cbetSourceId),
|
|
7155
|
-
EpisodeId: smithy_client_1.expectString(output.episodeId),
|
|
7156
|
-
MetadataDestination: smithy_client_1.expectString(output.metadataDestination),
|
|
7157
|
-
SourceId: smithy_client_1.expectInt32(output.sourceId),
|
|
7158
|
-
SourceWatermarkStatus: smithy_client_1.expectString(output.sourceWatermarkStatus),
|
|
7159
|
-
TicServerUrl: smithy_client_1.expectString(output.ticServerUrl),
|
|
7160
|
-
UniqueTicPerAudioTrack: smithy_client_1.expectString(output.uniqueTicPerAudioTrack),
|
|
7150
|
+
ActiveWatermarkProcess: (0, smithy_client_1.expectString)(output.activeWatermarkProcess),
|
|
7151
|
+
AdiFilename: (0, smithy_client_1.expectString)(output.adiFilename),
|
|
7152
|
+
AssetId: (0, smithy_client_1.expectString)(output.assetId),
|
|
7153
|
+
AssetName: (0, smithy_client_1.expectString)(output.assetName),
|
|
7154
|
+
CbetSourceId: (0, smithy_client_1.expectString)(output.cbetSourceId),
|
|
7155
|
+
EpisodeId: (0, smithy_client_1.expectString)(output.episodeId),
|
|
7156
|
+
MetadataDestination: (0, smithy_client_1.expectString)(output.metadataDestination),
|
|
7157
|
+
SourceId: (0, smithy_client_1.expectInt32)(output.sourceId),
|
|
7158
|
+
SourceWatermarkStatus: (0, smithy_client_1.expectString)(output.sourceWatermarkStatus),
|
|
7159
|
+
TicServerUrl: (0, smithy_client_1.expectString)(output.ticServerUrl),
|
|
7160
|
+
UniqueTicPerAudioTrack: (0, smithy_client_1.expectString)(output.uniqueTicPerAudioTrack),
|
|
7161
7161
|
};
|
|
7162
7162
|
};
|
|
7163
7163
|
const deserializeAws_restJson1NoiseReducer = (output, context) => {
|
|
7164
7164
|
return {
|
|
7165
|
-
Filter: smithy_client_1.expectString(output.filter),
|
|
7165
|
+
Filter: (0, smithy_client_1.expectString)(output.filter),
|
|
7166
7166
|
FilterSettings: output.filterSettings !== undefined && output.filterSettings !== null
|
|
7167
7167
|
? deserializeAws_restJson1NoiseReducerFilterSettings(output.filterSettings, context)
|
|
7168
7168
|
: undefined,
|
|
@@ -7176,30 +7176,30 @@ const deserializeAws_restJson1NoiseReducer = (output, context) => {
|
|
|
7176
7176
|
};
|
|
7177
7177
|
const deserializeAws_restJson1NoiseReducerFilterSettings = (output, context) => {
|
|
7178
7178
|
return {
|
|
7179
|
-
Strength: smithy_client_1.expectInt32(output.strength),
|
|
7179
|
+
Strength: (0, smithy_client_1.expectInt32)(output.strength),
|
|
7180
7180
|
};
|
|
7181
7181
|
};
|
|
7182
7182
|
const deserializeAws_restJson1NoiseReducerSpatialFilterSettings = (output, context) => {
|
|
7183
7183
|
return {
|
|
7184
|
-
PostFilterSharpenStrength: smithy_client_1.expectInt32(output.postFilterSharpenStrength),
|
|
7185
|
-
Speed: smithy_client_1.expectInt32(output.speed),
|
|
7186
|
-
Strength: smithy_client_1.expectInt32(output.strength),
|
|
7184
|
+
PostFilterSharpenStrength: (0, smithy_client_1.expectInt32)(output.postFilterSharpenStrength),
|
|
7185
|
+
Speed: (0, smithy_client_1.expectInt32)(output.speed),
|
|
7186
|
+
Strength: (0, smithy_client_1.expectInt32)(output.strength),
|
|
7187
7187
|
};
|
|
7188
7188
|
};
|
|
7189
7189
|
const deserializeAws_restJson1NoiseReducerTemporalFilterSettings = (output, context) => {
|
|
7190
7190
|
return {
|
|
7191
|
-
AggressiveMode: smithy_client_1.expectInt32(output.aggressiveMode),
|
|
7192
|
-
PostTemporalSharpening: smithy_client_1.expectString(output.postTemporalSharpening),
|
|
7193
|
-
PostTemporalSharpeningStrength: smithy_client_1.expectString(output.postTemporalSharpeningStrength),
|
|
7194
|
-
Speed: smithy_client_1.expectInt32(output.speed),
|
|
7195
|
-
Strength: smithy_client_1.expectInt32(output.strength),
|
|
7191
|
+
AggressiveMode: (0, smithy_client_1.expectInt32)(output.aggressiveMode),
|
|
7192
|
+
PostTemporalSharpening: (0, smithy_client_1.expectString)(output.postTemporalSharpening),
|
|
7193
|
+
PostTemporalSharpeningStrength: (0, smithy_client_1.expectString)(output.postTemporalSharpeningStrength),
|
|
7194
|
+
Speed: (0, smithy_client_1.expectInt32)(output.speed),
|
|
7195
|
+
Strength: (0, smithy_client_1.expectInt32)(output.strength),
|
|
7196
7196
|
};
|
|
7197
7197
|
};
|
|
7198
7198
|
const deserializeAws_restJson1OpusSettings = (output, context) => {
|
|
7199
7199
|
return {
|
|
7200
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7201
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
7202
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
7200
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7201
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
7202
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
7203
7203
|
};
|
|
7204
7204
|
};
|
|
7205
7205
|
const deserializeAws_restJson1Output = (output, context) => {
|
|
@@ -7213,12 +7213,12 @@ const deserializeAws_restJson1Output = (output, context) => {
|
|
|
7213
7213
|
ContainerSettings: output.containerSettings !== undefined && output.containerSettings !== null
|
|
7214
7214
|
? deserializeAws_restJson1ContainerSettings(output.containerSettings, context)
|
|
7215
7215
|
: undefined,
|
|
7216
|
-
Extension: smithy_client_1.expectString(output.extension),
|
|
7217
|
-
NameModifier: smithy_client_1.expectString(output.nameModifier),
|
|
7216
|
+
Extension: (0, smithy_client_1.expectString)(output.extension),
|
|
7217
|
+
NameModifier: (0, smithy_client_1.expectString)(output.nameModifier),
|
|
7218
7218
|
OutputSettings: output.outputSettings !== undefined && output.outputSettings !== null
|
|
7219
7219
|
? deserializeAws_restJson1OutputSettings(output.outputSettings, context)
|
|
7220
7220
|
: undefined,
|
|
7221
|
-
Preset: smithy_client_1.expectString(output.preset),
|
|
7221
|
+
Preset: (0, smithy_client_1.expectString)(output.preset),
|
|
7222
7222
|
VideoDescription: output.videoDescription !== undefined && output.videoDescription !== null
|
|
7223
7223
|
? deserializeAws_restJson1VideoDescription(output.videoDescription, context)
|
|
7224
7224
|
: undefined,
|
|
@@ -7236,7 +7236,7 @@ const deserializeAws_restJson1OutputChannelMapping = (output, context) => {
|
|
|
7236
7236
|
};
|
|
7237
7237
|
const deserializeAws_restJson1OutputDetail = (output, context) => {
|
|
7238
7238
|
return {
|
|
7239
|
-
DurationInMs: smithy_client_1.expectInt32(output.durationInMs),
|
|
7239
|
+
DurationInMs: (0, smithy_client_1.expectInt32)(output.durationInMs),
|
|
7240
7240
|
VideoDetails: output.videoDetails !== undefined && output.videoDetails !== null
|
|
7241
7241
|
? deserializeAws_restJson1VideoDetail(output.videoDetails, context)
|
|
7242
7242
|
: undefined,
|
|
@@ -7247,8 +7247,8 @@ const deserializeAws_restJson1OutputGroup = (output, context) => {
|
|
|
7247
7247
|
AutomatedEncodingSettings: output.automatedEncodingSettings !== undefined && output.automatedEncodingSettings !== null
|
|
7248
7248
|
? deserializeAws_restJson1AutomatedEncodingSettings(output.automatedEncodingSettings, context)
|
|
7249
7249
|
: undefined,
|
|
7250
|
-
CustomName: smithy_client_1.expectString(output.customName),
|
|
7251
|
-
Name: smithy_client_1.expectString(output.name),
|
|
7250
|
+
CustomName: (0, smithy_client_1.expectString)(output.customName),
|
|
7251
|
+
Name: (0, smithy_client_1.expectString)(output.name),
|
|
7252
7252
|
OutputGroupSettings: output.outputGroupSettings !== undefined && output.outputGroupSettings !== null
|
|
7253
7253
|
? deserializeAws_restJson1OutputGroupSettings(output.outputGroupSettings, context)
|
|
7254
7254
|
: undefined,
|
|
@@ -7281,7 +7281,7 @@ const deserializeAws_restJson1OutputGroupSettings = (output, context) => {
|
|
|
7281
7281
|
MsSmoothGroupSettings: output.msSmoothGroupSettings !== undefined && output.msSmoothGroupSettings !== null
|
|
7282
7282
|
? deserializeAws_restJson1MsSmoothGroupSettings(output.msSmoothGroupSettings, context)
|
|
7283
7283
|
: undefined,
|
|
7284
|
-
Type: smithy_client_1.expectString(output.type),
|
|
7284
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
7285
7285
|
};
|
|
7286
7286
|
};
|
|
7287
7287
|
const deserializeAws_restJson1OutputSettings = (output, context) => {
|
|
@@ -7300,27 +7300,27 @@ const deserializeAws_restJson1PartnerWatermarking = (output, context) => {
|
|
|
7300
7300
|
};
|
|
7301
7301
|
const deserializeAws_restJson1Policy = (output, context) => {
|
|
7302
7302
|
return {
|
|
7303
|
-
HttpInputs: smithy_client_1.expectString(output.httpInputs),
|
|
7304
|
-
HttpsInputs: smithy_client_1.expectString(output.httpsInputs),
|
|
7305
|
-
S3Inputs: smithy_client_1.expectString(output.s3Inputs),
|
|
7303
|
+
HttpInputs: (0, smithy_client_1.expectString)(output.httpInputs),
|
|
7304
|
+
HttpsInputs: (0, smithy_client_1.expectString)(output.httpsInputs),
|
|
7305
|
+
S3Inputs: (0, smithy_client_1.expectString)(output.s3Inputs),
|
|
7306
7306
|
};
|
|
7307
7307
|
};
|
|
7308
7308
|
const deserializeAws_restJson1Preset = (output, context) => {
|
|
7309
7309
|
return {
|
|
7310
|
-
Arn: smithy_client_1.expectString(output.arn),
|
|
7311
|
-
Category: smithy_client_1.expectString(output.category),
|
|
7310
|
+
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
7311
|
+
Category: (0, smithy_client_1.expectString)(output.category),
|
|
7312
7312
|
CreatedAt: output.createdAt !== undefined && output.createdAt !== null
|
|
7313
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.createdAt)))
|
|
7313
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.createdAt)))
|
|
7314
7314
|
: undefined,
|
|
7315
|
-
Description: smithy_client_1.expectString(output.description),
|
|
7315
|
+
Description: (0, smithy_client_1.expectString)(output.description),
|
|
7316
7316
|
LastUpdated: output.lastUpdated !== undefined && output.lastUpdated !== null
|
|
7317
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.lastUpdated)))
|
|
7317
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdated)))
|
|
7318
7318
|
: undefined,
|
|
7319
|
-
Name: smithy_client_1.expectString(output.name),
|
|
7319
|
+
Name: (0, smithy_client_1.expectString)(output.name),
|
|
7320
7320
|
Settings: output.settings !== undefined && output.settings !== null
|
|
7321
7321
|
? deserializeAws_restJson1PresetSettings(output.settings, context)
|
|
7322
7322
|
: undefined,
|
|
7323
|
-
Type: smithy_client_1.expectString(output.type),
|
|
7323
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
7324
7324
|
};
|
|
7325
7325
|
};
|
|
7326
7326
|
const deserializeAws_restJson1PresetSettings = (output, context) => {
|
|
@@ -7341,57 +7341,57 @@ const deserializeAws_restJson1PresetSettings = (output, context) => {
|
|
|
7341
7341
|
};
|
|
7342
7342
|
const deserializeAws_restJson1ProresSettings = (output, context) => {
|
|
7343
7343
|
return {
|
|
7344
|
-
ChromaSampling: smithy_client_1.expectString(output.chromaSampling),
|
|
7345
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
7346
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7347
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7348
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7349
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7350
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
7351
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
7352
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
7353
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
7354
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
7355
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
7356
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
7344
|
+
ChromaSampling: (0, smithy_client_1.expectString)(output.chromaSampling),
|
|
7345
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
7346
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7347
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7348
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7349
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7350
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
7351
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
7352
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
7353
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
7354
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
7355
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
7356
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
7357
7357
|
};
|
|
7358
7358
|
};
|
|
7359
7359
|
const deserializeAws_restJson1Queue = (output, context) => {
|
|
7360
7360
|
return {
|
|
7361
|
-
Arn: smithy_client_1.expectString(output.arn),
|
|
7361
|
+
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
7362
7362
|
CreatedAt: output.createdAt !== undefined && output.createdAt !== null
|
|
7363
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.createdAt)))
|
|
7363
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.createdAt)))
|
|
7364
7364
|
: undefined,
|
|
7365
|
-
Description: smithy_client_1.expectString(output.description),
|
|
7365
|
+
Description: (0, smithy_client_1.expectString)(output.description),
|
|
7366
7366
|
LastUpdated: output.lastUpdated !== undefined && output.lastUpdated !== null
|
|
7367
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.lastUpdated)))
|
|
7367
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdated)))
|
|
7368
7368
|
: undefined,
|
|
7369
|
-
Name: smithy_client_1.expectString(output.name),
|
|
7370
|
-
PricingPlan: smithy_client_1.expectString(output.pricingPlan),
|
|
7371
|
-
ProgressingJobsCount: smithy_client_1.expectInt32(output.progressingJobsCount),
|
|
7369
|
+
Name: (0, smithy_client_1.expectString)(output.name),
|
|
7370
|
+
PricingPlan: (0, smithy_client_1.expectString)(output.pricingPlan),
|
|
7371
|
+
ProgressingJobsCount: (0, smithy_client_1.expectInt32)(output.progressingJobsCount),
|
|
7372
7372
|
ReservationPlan: output.reservationPlan !== undefined && output.reservationPlan !== null
|
|
7373
7373
|
? deserializeAws_restJson1ReservationPlan(output.reservationPlan, context)
|
|
7374
7374
|
: undefined,
|
|
7375
|
-
Status: smithy_client_1.expectString(output.status),
|
|
7376
|
-
SubmittedJobsCount: smithy_client_1.expectInt32(output.submittedJobsCount),
|
|
7377
|
-
Type: smithy_client_1.expectString(output.type),
|
|
7375
|
+
Status: (0, smithy_client_1.expectString)(output.status),
|
|
7376
|
+
SubmittedJobsCount: (0, smithy_client_1.expectInt32)(output.submittedJobsCount),
|
|
7377
|
+
Type: (0, smithy_client_1.expectString)(output.type),
|
|
7378
7378
|
};
|
|
7379
7379
|
};
|
|
7380
7380
|
const deserializeAws_restJson1QueueTransition = (output, context) => {
|
|
7381
7381
|
return {
|
|
7382
|
-
DestinationQueue: smithy_client_1.expectString(output.destinationQueue),
|
|
7383
|
-
SourceQueue: smithy_client_1.expectString(output.sourceQueue),
|
|
7382
|
+
DestinationQueue: (0, smithy_client_1.expectString)(output.destinationQueue),
|
|
7383
|
+
SourceQueue: (0, smithy_client_1.expectString)(output.sourceQueue),
|
|
7384
7384
|
Timestamp: output.timestamp !== undefined && output.timestamp !== null
|
|
7385
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.timestamp)))
|
|
7385
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.timestamp)))
|
|
7386
7386
|
: undefined,
|
|
7387
7387
|
};
|
|
7388
7388
|
};
|
|
7389
7389
|
const deserializeAws_restJson1Rectangle = (output, context) => {
|
|
7390
7390
|
return {
|
|
7391
|
-
Height: smithy_client_1.expectInt32(output.height),
|
|
7392
|
-
Width: smithy_client_1.expectInt32(output.width),
|
|
7393
|
-
X: smithy_client_1.expectInt32(output.x),
|
|
7394
|
-
Y: smithy_client_1.expectInt32(output.y),
|
|
7391
|
+
Height: (0, smithy_client_1.expectInt32)(output.height),
|
|
7392
|
+
Width: (0, smithy_client_1.expectInt32)(output.width),
|
|
7393
|
+
X: (0, smithy_client_1.expectInt32)(output.x),
|
|
7394
|
+
Y: (0, smithy_client_1.expectInt32)(output.y),
|
|
7395
7395
|
};
|
|
7396
7396
|
};
|
|
7397
7397
|
const deserializeAws_restJson1RemixSettings = (output, context) => {
|
|
@@ -7399,27 +7399,27 @@ const deserializeAws_restJson1RemixSettings = (output, context) => {
|
|
|
7399
7399
|
ChannelMapping: output.channelMapping !== undefined && output.channelMapping !== null
|
|
7400
7400
|
? deserializeAws_restJson1ChannelMapping(output.channelMapping, context)
|
|
7401
7401
|
: undefined,
|
|
7402
|
-
ChannelsIn: smithy_client_1.expectInt32(output.channelsIn),
|
|
7403
|
-
ChannelsOut: smithy_client_1.expectInt32(output.channelsOut),
|
|
7402
|
+
ChannelsIn: (0, smithy_client_1.expectInt32)(output.channelsIn),
|
|
7403
|
+
ChannelsOut: (0, smithy_client_1.expectInt32)(output.channelsOut),
|
|
7404
7404
|
};
|
|
7405
7405
|
};
|
|
7406
7406
|
const deserializeAws_restJson1ReservationPlan = (output, context) => {
|
|
7407
7407
|
return {
|
|
7408
|
-
Commitment: smithy_client_1.expectString(output.commitment),
|
|
7408
|
+
Commitment: (0, smithy_client_1.expectString)(output.commitment),
|
|
7409
7409
|
ExpiresAt: output.expiresAt !== undefined && output.expiresAt !== null
|
|
7410
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.expiresAt)))
|
|
7410
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.expiresAt)))
|
|
7411
7411
|
: undefined,
|
|
7412
7412
|
PurchasedAt: output.purchasedAt !== undefined && output.purchasedAt !== null
|
|
7413
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.purchasedAt)))
|
|
7413
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.purchasedAt)))
|
|
7414
7414
|
: undefined,
|
|
7415
|
-
RenewalType: smithy_client_1.expectString(output.renewalType),
|
|
7416
|
-
ReservedSlots: smithy_client_1.expectInt32(output.reservedSlots),
|
|
7417
|
-
Status: smithy_client_1.expectString(output.status),
|
|
7415
|
+
RenewalType: (0, smithy_client_1.expectString)(output.renewalType),
|
|
7416
|
+
ReservedSlots: (0, smithy_client_1.expectInt32)(output.reservedSlots),
|
|
7417
|
+
Status: (0, smithy_client_1.expectString)(output.status),
|
|
7418
7418
|
};
|
|
7419
7419
|
};
|
|
7420
7420
|
const deserializeAws_restJson1ResourceTags = (output, context) => {
|
|
7421
7421
|
return {
|
|
7422
|
-
Arn: smithy_client_1.expectString(output.arn),
|
|
7422
|
+
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
7423
7423
|
Tags: output.tags !== undefined && output.tags !== null
|
|
7424
7424
|
? deserializeAws_restJson1__mapOf__string(output.tags, context)
|
|
7425
7425
|
: undefined,
|
|
@@ -7427,7 +7427,7 @@ const deserializeAws_restJson1ResourceTags = (output, context) => {
|
|
|
7427
7427
|
};
|
|
7428
7428
|
const deserializeAws_restJson1S3DestinationAccessControl = (output, context) => {
|
|
7429
7429
|
return {
|
|
7430
|
-
CannedAcl: smithy_client_1.expectString(output.cannedAcl),
|
|
7430
|
+
CannedAcl: (0, smithy_client_1.expectString)(output.cannedAcl),
|
|
7431
7431
|
};
|
|
7432
7432
|
};
|
|
7433
7433
|
const deserializeAws_restJson1S3DestinationSettings = (output, context) => {
|
|
@@ -7442,55 +7442,55 @@ const deserializeAws_restJson1S3DestinationSettings = (output, context) => {
|
|
|
7442
7442
|
};
|
|
7443
7443
|
const deserializeAws_restJson1S3EncryptionSettings = (output, context) => {
|
|
7444
7444
|
return {
|
|
7445
|
-
EncryptionType: smithy_client_1.expectString(output.encryptionType),
|
|
7446
|
-
KmsEncryptionContext: smithy_client_1.expectString(output.kmsEncryptionContext),
|
|
7447
|
-
KmsKeyArn: smithy_client_1.expectString(output.kmsKeyArn),
|
|
7445
|
+
EncryptionType: (0, smithy_client_1.expectString)(output.encryptionType),
|
|
7446
|
+
KmsEncryptionContext: (0, smithy_client_1.expectString)(output.kmsEncryptionContext),
|
|
7447
|
+
KmsKeyArn: (0, smithy_client_1.expectString)(output.kmsKeyArn),
|
|
7448
7448
|
};
|
|
7449
7449
|
};
|
|
7450
7450
|
const deserializeAws_restJson1SccDestinationSettings = (output, context) => {
|
|
7451
7451
|
return {
|
|
7452
|
-
Framerate: smithy_client_1.expectString(output.framerate),
|
|
7452
|
+
Framerate: (0, smithy_client_1.expectString)(output.framerate),
|
|
7453
7453
|
};
|
|
7454
7454
|
};
|
|
7455
7455
|
const deserializeAws_restJson1SpekeKeyProvider = (output, context) => {
|
|
7456
7456
|
return {
|
|
7457
|
-
CertificateArn: smithy_client_1.expectString(output.certificateArn),
|
|
7458
|
-
ResourceId: smithy_client_1.expectString(output.resourceId),
|
|
7457
|
+
CertificateArn: (0, smithy_client_1.expectString)(output.certificateArn),
|
|
7458
|
+
ResourceId: (0, smithy_client_1.expectString)(output.resourceId),
|
|
7459
7459
|
SystemIds: output.systemIds !== undefined && output.systemIds !== null
|
|
7460
7460
|
? deserializeAws_restJson1__listOf__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12(output.systemIds, context)
|
|
7461
7461
|
: undefined,
|
|
7462
|
-
Url: smithy_client_1.expectString(output.url),
|
|
7462
|
+
Url: (0, smithy_client_1.expectString)(output.url),
|
|
7463
7463
|
};
|
|
7464
7464
|
};
|
|
7465
7465
|
const deserializeAws_restJson1SpekeKeyProviderCmaf = (output, context) => {
|
|
7466
7466
|
return {
|
|
7467
|
-
CertificateArn: smithy_client_1.expectString(output.certificateArn),
|
|
7467
|
+
CertificateArn: (0, smithy_client_1.expectString)(output.certificateArn),
|
|
7468
7468
|
DashSignaledSystemIds: output.dashSignaledSystemIds !== undefined && output.dashSignaledSystemIds !== null
|
|
7469
7469
|
? deserializeAws_restJson1__listOf__stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12(output.dashSignaledSystemIds, context)
|
|
7470
7470
|
: undefined,
|
|
7471
7471
|
HlsSignaledSystemIds: output.hlsSignaledSystemIds !== undefined && output.hlsSignaledSystemIds !== null
|
|
7472
7472
|
? deserializeAws_restJson1__listOf__stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12(output.hlsSignaledSystemIds, context)
|
|
7473
7473
|
: undefined,
|
|
7474
|
-
ResourceId: smithy_client_1.expectString(output.resourceId),
|
|
7475
|
-
Url: smithy_client_1.expectString(output.url),
|
|
7474
|
+
ResourceId: (0, smithy_client_1.expectString)(output.resourceId),
|
|
7475
|
+
Url: (0, smithy_client_1.expectString)(output.url),
|
|
7476
7476
|
};
|
|
7477
7477
|
};
|
|
7478
7478
|
const deserializeAws_restJson1SrtDestinationSettings = (output, context) => {
|
|
7479
7479
|
return {
|
|
7480
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
7480
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
7481
7481
|
};
|
|
7482
7482
|
};
|
|
7483
7483
|
const deserializeAws_restJson1StaticKeyProvider = (output, context) => {
|
|
7484
7484
|
return {
|
|
7485
|
-
KeyFormat: smithy_client_1.expectString(output.keyFormat),
|
|
7486
|
-
KeyFormatVersions: smithy_client_1.expectString(output.keyFormatVersions),
|
|
7487
|
-
StaticKeyValue: smithy_client_1.expectString(output.staticKeyValue),
|
|
7488
|
-
Url: smithy_client_1.expectString(output.url),
|
|
7485
|
+
KeyFormat: (0, smithy_client_1.expectString)(output.keyFormat),
|
|
7486
|
+
KeyFormatVersions: (0, smithy_client_1.expectString)(output.keyFormatVersions),
|
|
7487
|
+
StaticKeyValue: (0, smithy_client_1.expectString)(output.staticKeyValue),
|
|
7488
|
+
Url: (0, smithy_client_1.expectString)(output.url),
|
|
7489
7489
|
};
|
|
7490
7490
|
};
|
|
7491
7491
|
const deserializeAws_restJson1TeletextDestinationSettings = (output, context) => {
|
|
7492
7492
|
return {
|
|
7493
|
-
PageNumber: smithy_client_1.expectString(output.pageNumber),
|
|
7493
|
+
PageNumber: (0, smithy_client_1.expectString)(output.pageNumber),
|
|
7494
7494
|
PageTypes: output.pageTypes !== undefined && output.pageTypes !== null
|
|
7495
7495
|
? deserializeAws_restJson1__listOfTeletextPageType(output.pageTypes, context)
|
|
7496
7496
|
: undefined,
|
|
@@ -7498,22 +7498,22 @@ const deserializeAws_restJson1TeletextDestinationSettings = (output, context) =>
|
|
|
7498
7498
|
};
|
|
7499
7499
|
const deserializeAws_restJson1TeletextSourceSettings = (output, context) => {
|
|
7500
7500
|
return {
|
|
7501
|
-
PageNumber: smithy_client_1.expectString(output.pageNumber),
|
|
7501
|
+
PageNumber: (0, smithy_client_1.expectString)(output.pageNumber),
|
|
7502
7502
|
};
|
|
7503
7503
|
};
|
|
7504
7504
|
const deserializeAws_restJson1TimecodeBurnin = (output, context) => {
|
|
7505
7505
|
return {
|
|
7506
|
-
FontSize: smithy_client_1.expectInt32(output.fontSize),
|
|
7507
|
-
Position: smithy_client_1.expectString(output.position),
|
|
7508
|
-
Prefix: smithy_client_1.expectString(output.prefix),
|
|
7506
|
+
FontSize: (0, smithy_client_1.expectInt32)(output.fontSize),
|
|
7507
|
+
Position: (0, smithy_client_1.expectString)(output.position),
|
|
7508
|
+
Prefix: (0, smithy_client_1.expectString)(output.prefix),
|
|
7509
7509
|
};
|
|
7510
7510
|
};
|
|
7511
7511
|
const deserializeAws_restJson1TimecodeConfig = (output, context) => {
|
|
7512
7512
|
return {
|
|
7513
|
-
Anchor: smithy_client_1.expectString(output.anchor),
|
|
7514
|
-
Source: smithy_client_1.expectString(output.source),
|
|
7515
|
-
Start: smithy_client_1.expectString(output.start),
|
|
7516
|
-
TimestampOffset: smithy_client_1.expectString(output.timestampOffset),
|
|
7513
|
+
Anchor: (0, smithy_client_1.expectString)(output.anchor),
|
|
7514
|
+
Source: (0, smithy_client_1.expectString)(output.source),
|
|
7515
|
+
Start: (0, smithy_client_1.expectString)(output.start),
|
|
7516
|
+
TimestampOffset: (0, smithy_client_1.expectString)(output.timestampOffset),
|
|
7517
7517
|
};
|
|
7518
7518
|
};
|
|
7519
7519
|
const deserializeAws_restJson1TimedMetadataInsertion = (output, context) => {
|
|
@@ -7526,37 +7526,37 @@ const deserializeAws_restJson1TimedMetadataInsertion = (output, context) => {
|
|
|
7526
7526
|
const deserializeAws_restJson1Timing = (output, context) => {
|
|
7527
7527
|
return {
|
|
7528
7528
|
FinishTime: output.finishTime !== undefined && output.finishTime !== null
|
|
7529
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.finishTime)))
|
|
7529
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.finishTime)))
|
|
7530
7530
|
: undefined,
|
|
7531
7531
|
StartTime: output.startTime !== undefined && output.startTime !== null
|
|
7532
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startTime)))
|
|
7532
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime)))
|
|
7533
7533
|
: undefined,
|
|
7534
7534
|
SubmitTime: output.submitTime !== undefined && output.submitTime !== null
|
|
7535
|
-
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.submitTime)))
|
|
7535
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.submitTime)))
|
|
7536
7536
|
: undefined,
|
|
7537
7537
|
};
|
|
7538
7538
|
};
|
|
7539
7539
|
const deserializeAws_restJson1TrackSourceSettings = (output, context) => {
|
|
7540
7540
|
return {
|
|
7541
|
-
TrackNumber: smithy_client_1.expectInt32(output.trackNumber),
|
|
7541
|
+
TrackNumber: (0, smithy_client_1.expectInt32)(output.trackNumber),
|
|
7542
7542
|
};
|
|
7543
7543
|
};
|
|
7544
7544
|
const deserializeAws_restJson1TtmlDestinationSettings = (output, context) => {
|
|
7545
7545
|
return {
|
|
7546
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
7546
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
7547
7547
|
};
|
|
7548
7548
|
};
|
|
7549
7549
|
const deserializeAws_restJson1Vc3Settings = (output, context) => {
|
|
7550
7550
|
return {
|
|
7551
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7552
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7553
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7554
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7555
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
7556
|
-
ScanTypeConversionMode: smithy_client_1.expectString(output.scanTypeConversionMode),
|
|
7557
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
7558
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
7559
|
-
Vc3Class: smithy_client_1.expectString(output.vc3Class),
|
|
7551
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7552
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7553
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7554
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7555
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
7556
|
+
ScanTypeConversionMode: (0, smithy_client_1.expectString)(output.scanTypeConversionMode),
|
|
7557
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
7558
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
7559
|
+
Vc3Class: (0, smithy_client_1.expectString)(output.vc3Class),
|
|
7560
7560
|
};
|
|
7561
7561
|
};
|
|
7562
7562
|
const deserializeAws_restJson1VideoCodecSettings = (output, context) => {
|
|
@@ -7567,7 +7567,7 @@ const deserializeAws_restJson1VideoCodecSettings = (output, context) => {
|
|
|
7567
7567
|
AvcIntraSettings: output.avcIntraSettings !== undefined && output.avcIntraSettings !== null
|
|
7568
7568
|
? deserializeAws_restJson1AvcIntraSettings(output.avcIntraSettings, context)
|
|
7569
7569
|
: undefined,
|
|
7570
|
-
Codec: smithy_client_1.expectString(output.codec),
|
|
7570
|
+
Codec: (0, smithy_client_1.expectString)(output.codec),
|
|
7571
7571
|
FrameCaptureSettings: output.frameCaptureSettings !== undefined && output.frameCaptureSettings !== null
|
|
7572
7572
|
? deserializeAws_restJson1FrameCaptureSettings(output.frameCaptureSettings, context)
|
|
7573
7573
|
: undefined,
|
|
@@ -7599,35 +7599,35 @@ const deserializeAws_restJson1VideoCodecSettings = (output, context) => {
|
|
|
7599
7599
|
};
|
|
7600
7600
|
const deserializeAws_restJson1VideoDescription = (output, context) => {
|
|
7601
7601
|
return {
|
|
7602
|
-
AfdSignaling: smithy_client_1.expectString(output.afdSignaling),
|
|
7603
|
-
AntiAlias: smithy_client_1.expectString(output.antiAlias),
|
|
7602
|
+
AfdSignaling: (0, smithy_client_1.expectString)(output.afdSignaling),
|
|
7603
|
+
AntiAlias: (0, smithy_client_1.expectString)(output.antiAlias),
|
|
7604
7604
|
CodecSettings: output.codecSettings !== undefined && output.codecSettings !== null
|
|
7605
7605
|
? deserializeAws_restJson1VideoCodecSettings(output.codecSettings, context)
|
|
7606
7606
|
: undefined,
|
|
7607
|
-
ColorMetadata: smithy_client_1.expectString(output.colorMetadata),
|
|
7607
|
+
ColorMetadata: (0, smithy_client_1.expectString)(output.colorMetadata),
|
|
7608
7608
|
Crop: output.crop !== undefined && output.crop !== null
|
|
7609
7609
|
? deserializeAws_restJson1Rectangle(output.crop, context)
|
|
7610
7610
|
: undefined,
|
|
7611
|
-
DropFrameTimecode: smithy_client_1.expectString(output.dropFrameTimecode),
|
|
7612
|
-
FixedAfd: smithy_client_1.expectInt32(output.fixedAfd),
|
|
7613
|
-
Height: smithy_client_1.expectInt32(output.height),
|
|
7611
|
+
DropFrameTimecode: (0, smithy_client_1.expectString)(output.dropFrameTimecode),
|
|
7612
|
+
FixedAfd: (0, smithy_client_1.expectInt32)(output.fixedAfd),
|
|
7613
|
+
Height: (0, smithy_client_1.expectInt32)(output.height),
|
|
7614
7614
|
Position: output.position !== undefined && output.position !== null
|
|
7615
7615
|
? deserializeAws_restJson1Rectangle(output.position, context)
|
|
7616
7616
|
: undefined,
|
|
7617
|
-
RespondToAfd: smithy_client_1.expectString(output.respondToAfd),
|
|
7618
|
-
ScalingBehavior: smithy_client_1.expectString(output.scalingBehavior),
|
|
7619
|
-
Sharpness: smithy_client_1.expectInt32(output.sharpness),
|
|
7620
|
-
TimecodeInsertion: smithy_client_1.expectString(output.timecodeInsertion),
|
|
7617
|
+
RespondToAfd: (0, smithy_client_1.expectString)(output.respondToAfd),
|
|
7618
|
+
ScalingBehavior: (0, smithy_client_1.expectString)(output.scalingBehavior),
|
|
7619
|
+
Sharpness: (0, smithy_client_1.expectInt32)(output.sharpness),
|
|
7620
|
+
TimecodeInsertion: (0, smithy_client_1.expectString)(output.timecodeInsertion),
|
|
7621
7621
|
VideoPreprocessors: output.videoPreprocessors !== undefined && output.videoPreprocessors !== null
|
|
7622
7622
|
? deserializeAws_restJson1VideoPreprocessor(output.videoPreprocessors, context)
|
|
7623
7623
|
: undefined,
|
|
7624
|
-
Width: smithy_client_1.expectInt32(output.width),
|
|
7624
|
+
Width: (0, smithy_client_1.expectInt32)(output.width),
|
|
7625
7625
|
};
|
|
7626
7626
|
};
|
|
7627
7627
|
const deserializeAws_restJson1VideoDetail = (output, context) => {
|
|
7628
7628
|
return {
|
|
7629
|
-
HeightInPx: smithy_client_1.expectInt32(output.heightInPx),
|
|
7630
|
-
WidthInPx: smithy_client_1.expectInt32(output.widthInPx),
|
|
7629
|
+
HeightInPx: (0, smithy_client_1.expectInt32)(output.heightInPx),
|
|
7630
|
+
WidthInPx: (0, smithy_client_1.expectInt32)(output.widthInPx),
|
|
7631
7631
|
};
|
|
7632
7632
|
};
|
|
7633
7633
|
const deserializeAws_restJson1VideoPreprocessor = (output, context) => {
|
|
@@ -7660,134 +7660,134 @@ const deserializeAws_restJson1VideoPreprocessor = (output, context) => {
|
|
|
7660
7660
|
};
|
|
7661
7661
|
const deserializeAws_restJson1VideoSelector = (output, context) => {
|
|
7662
7662
|
return {
|
|
7663
|
-
AlphaBehavior: smithy_client_1.expectString(output.alphaBehavior),
|
|
7664
|
-
ColorSpace: smithy_client_1.expectString(output.colorSpace),
|
|
7665
|
-
ColorSpaceUsage: smithy_client_1.expectString(output.colorSpaceUsage),
|
|
7666
|
-
EmbeddedTimecodeOverride: smithy_client_1.expectString(output.embeddedTimecodeOverride),
|
|
7663
|
+
AlphaBehavior: (0, smithy_client_1.expectString)(output.alphaBehavior),
|
|
7664
|
+
ColorSpace: (0, smithy_client_1.expectString)(output.colorSpace),
|
|
7665
|
+
ColorSpaceUsage: (0, smithy_client_1.expectString)(output.colorSpaceUsage),
|
|
7666
|
+
EmbeddedTimecodeOverride: (0, smithy_client_1.expectString)(output.embeddedTimecodeOverride),
|
|
7667
7667
|
Hdr10Metadata: output.hdr10Metadata !== undefined && output.hdr10Metadata !== null
|
|
7668
7668
|
? deserializeAws_restJson1Hdr10Metadata(output.hdr10Metadata, context)
|
|
7669
7669
|
: undefined,
|
|
7670
|
-
Pid: smithy_client_1.expectInt32(output.pid),
|
|
7671
|
-
ProgramNumber: smithy_client_1.expectInt32(output.programNumber),
|
|
7672
|
-
Rotate: smithy_client_1.expectString(output.rotate),
|
|
7673
|
-
SampleRange: smithy_client_1.expectString(output.sampleRange),
|
|
7670
|
+
Pid: (0, smithy_client_1.expectInt32)(output.pid),
|
|
7671
|
+
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
7672
|
+
Rotate: (0, smithy_client_1.expectString)(output.rotate),
|
|
7673
|
+
SampleRange: (0, smithy_client_1.expectString)(output.sampleRange),
|
|
7674
7674
|
};
|
|
7675
7675
|
};
|
|
7676
7676
|
const deserializeAws_restJson1VorbisSettings = (output, context) => {
|
|
7677
7677
|
return {
|
|
7678
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
7679
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
7680
|
-
VbrQuality: smithy_client_1.expectInt32(output.vbrQuality),
|
|
7678
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
7679
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
7680
|
+
VbrQuality: (0, smithy_client_1.expectInt32)(output.vbrQuality),
|
|
7681
7681
|
};
|
|
7682
7682
|
};
|
|
7683
7683
|
const deserializeAws_restJson1Vp8Settings = (output, context) => {
|
|
7684
7684
|
return {
|
|
7685
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7686
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7687
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7688
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7689
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7690
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
7691
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
7692
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
7693
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
7694
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
7695
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
7696
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
7697
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
7685
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7686
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7687
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7688
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7689
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7690
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
7691
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
7692
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
7693
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
7694
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
7695
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
7696
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
7697
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
7698
7698
|
};
|
|
7699
7699
|
};
|
|
7700
7700
|
const deserializeAws_restJson1Vp9Settings = (output, context) => {
|
|
7701
7701
|
return {
|
|
7702
|
-
Bitrate: smithy_client_1.expectInt32(output.bitrate),
|
|
7703
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7704
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7705
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7706
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7707
|
-
GopSize: smithy_client_1.limitedParseDouble(output.gopSize),
|
|
7708
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
7709
|
-
MaxBitrate: smithy_client_1.expectInt32(output.maxBitrate),
|
|
7710
|
-
ParControl: smithy_client_1.expectString(output.parControl),
|
|
7711
|
-
ParDenominator: smithy_client_1.expectInt32(output.parDenominator),
|
|
7712
|
-
ParNumerator: smithy_client_1.expectInt32(output.parNumerator),
|
|
7713
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
7714
|
-
RateControlMode: smithy_client_1.expectString(output.rateControlMode),
|
|
7702
|
+
Bitrate: (0, smithy_client_1.expectInt32)(output.bitrate),
|
|
7703
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7704
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7705
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7706
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7707
|
+
GopSize: (0, smithy_client_1.limitedParseDouble)(output.gopSize),
|
|
7708
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
7709
|
+
MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
|
|
7710
|
+
ParControl: (0, smithy_client_1.expectString)(output.parControl),
|
|
7711
|
+
ParDenominator: (0, smithy_client_1.expectInt32)(output.parDenominator),
|
|
7712
|
+
ParNumerator: (0, smithy_client_1.expectInt32)(output.parNumerator),
|
|
7713
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
7714
|
+
RateControlMode: (0, smithy_client_1.expectString)(output.rateControlMode),
|
|
7715
7715
|
};
|
|
7716
7716
|
};
|
|
7717
7717
|
const deserializeAws_restJson1WavSettings = (output, context) => {
|
|
7718
7718
|
return {
|
|
7719
|
-
BitDepth: smithy_client_1.expectInt32(output.bitDepth),
|
|
7720
|
-
Channels: smithy_client_1.expectInt32(output.channels),
|
|
7721
|
-
Format: smithy_client_1.expectString(output.format),
|
|
7722
|
-
SampleRate: smithy_client_1.expectInt32(output.sampleRate),
|
|
7719
|
+
BitDepth: (0, smithy_client_1.expectInt32)(output.bitDepth),
|
|
7720
|
+
Channels: (0, smithy_client_1.expectInt32)(output.channels),
|
|
7721
|
+
Format: (0, smithy_client_1.expectString)(output.format),
|
|
7722
|
+
SampleRate: (0, smithy_client_1.expectInt32)(output.sampleRate),
|
|
7723
7723
|
};
|
|
7724
7724
|
};
|
|
7725
7725
|
const deserializeAws_restJson1WebvttDestinationSettings = (output, context) => {
|
|
7726
7726
|
return {
|
|
7727
|
-
Accessibility: smithy_client_1.expectString(output.accessibility),
|
|
7728
|
-
StylePassthrough: smithy_client_1.expectString(output.stylePassthrough),
|
|
7727
|
+
Accessibility: (0, smithy_client_1.expectString)(output.accessibility),
|
|
7728
|
+
StylePassthrough: (0, smithy_client_1.expectString)(output.stylePassthrough),
|
|
7729
7729
|
};
|
|
7730
7730
|
};
|
|
7731
7731
|
const deserializeAws_restJson1WebvttHlsSourceSettings = (output, context) => {
|
|
7732
7732
|
return {
|
|
7733
|
-
RenditionGroupId: smithy_client_1.expectString(output.renditionGroupId),
|
|
7734
|
-
RenditionLanguageCode: smithy_client_1.expectString(output.renditionLanguageCode),
|
|
7735
|
-
RenditionName: smithy_client_1.expectString(output.renditionName),
|
|
7733
|
+
RenditionGroupId: (0, smithy_client_1.expectString)(output.renditionGroupId),
|
|
7734
|
+
RenditionLanguageCode: (0, smithy_client_1.expectString)(output.renditionLanguageCode),
|
|
7735
|
+
RenditionName: (0, smithy_client_1.expectString)(output.renditionName),
|
|
7736
7736
|
};
|
|
7737
7737
|
};
|
|
7738
7738
|
const deserializeAws_restJson1Xavc4kIntraCbgProfileSettings = (output, context) => {
|
|
7739
7739
|
return {
|
|
7740
|
-
XavcClass: smithy_client_1.expectString(output.xavcClass),
|
|
7740
|
+
XavcClass: (0, smithy_client_1.expectString)(output.xavcClass),
|
|
7741
7741
|
};
|
|
7742
7742
|
};
|
|
7743
7743
|
const deserializeAws_restJson1Xavc4kIntraVbrProfileSettings = (output, context) => {
|
|
7744
7744
|
return {
|
|
7745
|
-
XavcClass: smithy_client_1.expectString(output.xavcClass),
|
|
7745
|
+
XavcClass: (0, smithy_client_1.expectString)(output.xavcClass),
|
|
7746
7746
|
};
|
|
7747
7747
|
};
|
|
7748
7748
|
const deserializeAws_restJson1Xavc4kProfileSettings = (output, context) => {
|
|
7749
7749
|
return {
|
|
7750
|
-
BitrateClass: smithy_client_1.expectString(output.bitrateClass),
|
|
7751
|
-
CodecProfile: smithy_client_1.expectString(output.codecProfile),
|
|
7752
|
-
FlickerAdaptiveQuantization: smithy_client_1.expectString(output.flickerAdaptiveQuantization),
|
|
7753
|
-
GopBReference: smithy_client_1.expectString(output.gopBReference),
|
|
7754
|
-
GopClosedCadence: smithy_client_1.expectInt32(output.gopClosedCadence),
|
|
7755
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
7756
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
7757
|
-
Slices: smithy_client_1.expectInt32(output.slices),
|
|
7750
|
+
BitrateClass: (0, smithy_client_1.expectString)(output.bitrateClass),
|
|
7751
|
+
CodecProfile: (0, smithy_client_1.expectString)(output.codecProfile),
|
|
7752
|
+
FlickerAdaptiveQuantization: (0, smithy_client_1.expectString)(output.flickerAdaptiveQuantization),
|
|
7753
|
+
GopBReference: (0, smithy_client_1.expectString)(output.gopBReference),
|
|
7754
|
+
GopClosedCadence: (0, smithy_client_1.expectInt32)(output.gopClosedCadence),
|
|
7755
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
7756
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
7757
|
+
Slices: (0, smithy_client_1.expectInt32)(output.slices),
|
|
7758
7758
|
};
|
|
7759
7759
|
};
|
|
7760
7760
|
const deserializeAws_restJson1XavcHdIntraCbgProfileSettings = (output, context) => {
|
|
7761
7761
|
return {
|
|
7762
|
-
XavcClass: smithy_client_1.expectString(output.xavcClass),
|
|
7762
|
+
XavcClass: (0, smithy_client_1.expectString)(output.xavcClass),
|
|
7763
7763
|
};
|
|
7764
7764
|
};
|
|
7765
7765
|
const deserializeAws_restJson1XavcHdProfileSettings = (output, context) => {
|
|
7766
7766
|
return {
|
|
7767
|
-
BitrateClass: smithy_client_1.expectString(output.bitrateClass),
|
|
7768
|
-
FlickerAdaptiveQuantization: smithy_client_1.expectString(output.flickerAdaptiveQuantization),
|
|
7769
|
-
GopBReference: smithy_client_1.expectString(output.gopBReference),
|
|
7770
|
-
GopClosedCadence: smithy_client_1.expectInt32(output.gopClosedCadence),
|
|
7771
|
-
HrdBufferSize: smithy_client_1.expectInt32(output.hrdBufferSize),
|
|
7772
|
-
InterlaceMode: smithy_client_1.expectString(output.interlaceMode),
|
|
7773
|
-
QualityTuningLevel: smithy_client_1.expectString(output.qualityTuningLevel),
|
|
7774
|
-
Slices: smithy_client_1.expectInt32(output.slices),
|
|
7775
|
-
Telecine: smithy_client_1.expectString(output.telecine),
|
|
7767
|
+
BitrateClass: (0, smithy_client_1.expectString)(output.bitrateClass),
|
|
7768
|
+
FlickerAdaptiveQuantization: (0, smithy_client_1.expectString)(output.flickerAdaptiveQuantization),
|
|
7769
|
+
GopBReference: (0, smithy_client_1.expectString)(output.gopBReference),
|
|
7770
|
+
GopClosedCadence: (0, smithy_client_1.expectInt32)(output.gopClosedCadence),
|
|
7771
|
+
HrdBufferSize: (0, smithy_client_1.expectInt32)(output.hrdBufferSize),
|
|
7772
|
+
InterlaceMode: (0, smithy_client_1.expectString)(output.interlaceMode),
|
|
7773
|
+
QualityTuningLevel: (0, smithy_client_1.expectString)(output.qualityTuningLevel),
|
|
7774
|
+
Slices: (0, smithy_client_1.expectInt32)(output.slices),
|
|
7775
|
+
Telecine: (0, smithy_client_1.expectString)(output.telecine),
|
|
7776
7776
|
};
|
|
7777
7777
|
};
|
|
7778
7778
|
const deserializeAws_restJson1XavcSettings = (output, context) => {
|
|
7779
7779
|
return {
|
|
7780
|
-
AdaptiveQuantization: smithy_client_1.expectString(output.adaptiveQuantization),
|
|
7781
|
-
EntropyEncoding: smithy_client_1.expectString(output.entropyEncoding),
|
|
7782
|
-
FramerateControl: smithy_client_1.expectString(output.framerateControl),
|
|
7783
|
-
FramerateConversionAlgorithm: smithy_client_1.expectString(output.framerateConversionAlgorithm),
|
|
7784
|
-
FramerateDenominator: smithy_client_1.expectInt32(output.framerateDenominator),
|
|
7785
|
-
FramerateNumerator: smithy_client_1.expectInt32(output.framerateNumerator),
|
|
7786
|
-
Profile: smithy_client_1.expectString(output.profile),
|
|
7787
|
-
SlowPal: smithy_client_1.expectString(output.slowPal),
|
|
7788
|
-
Softness: smithy_client_1.expectInt32(output.softness),
|
|
7789
|
-
SpatialAdaptiveQuantization: smithy_client_1.expectString(output.spatialAdaptiveQuantization),
|
|
7790
|
-
TemporalAdaptiveQuantization: smithy_client_1.expectString(output.temporalAdaptiveQuantization),
|
|
7780
|
+
AdaptiveQuantization: (0, smithy_client_1.expectString)(output.adaptiveQuantization),
|
|
7781
|
+
EntropyEncoding: (0, smithy_client_1.expectString)(output.entropyEncoding),
|
|
7782
|
+
FramerateControl: (0, smithy_client_1.expectString)(output.framerateControl),
|
|
7783
|
+
FramerateConversionAlgorithm: (0, smithy_client_1.expectString)(output.framerateConversionAlgorithm),
|
|
7784
|
+
FramerateDenominator: (0, smithy_client_1.expectInt32)(output.framerateDenominator),
|
|
7785
|
+
FramerateNumerator: (0, smithy_client_1.expectInt32)(output.framerateNumerator),
|
|
7786
|
+
Profile: (0, smithy_client_1.expectString)(output.profile),
|
|
7787
|
+
SlowPal: (0, smithy_client_1.expectString)(output.slowPal),
|
|
7788
|
+
Softness: (0, smithy_client_1.expectInt32)(output.softness),
|
|
7789
|
+
SpatialAdaptiveQuantization: (0, smithy_client_1.expectString)(output.spatialAdaptiveQuantization),
|
|
7790
|
+
TemporalAdaptiveQuantization: (0, smithy_client_1.expectString)(output.temporalAdaptiveQuantization),
|
|
7791
7791
|
Xavc4kIntraCbgProfileSettings: output.xavc4kIntraCbgProfileSettings !== undefined && output.xavc4kIntraCbgProfileSettings !== null
|
|
7792
7792
|
? deserializeAws_restJson1Xavc4kIntraCbgProfileSettings(output.xavc4kIntraCbgProfileSettings, context)
|
|
7793
7793
|
: undefined,
|