@aws-sdk/client-mediaconvert 3.282.0 → 3.287.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.
@@ -858,6 +858,7 @@ var ColorSpace;
858
858
  ColorSpace["FOLLOW"] = "FOLLOW";
859
859
  ColorSpace["HDR10"] = "HDR10";
860
860
  ColorSpace["HLG_2020"] = "HLG_2020";
861
+ ColorSpace["P3D65_HDR"] = "P3D65_HDR";
861
862
  ColorSpace["P3D65_SDR"] = "P3D65_SDR";
862
863
  ColorSpace["P3DCI"] = "P3DCI";
863
864
  ColorSpace["REC_601"] = "REC_601";
@@ -1059,6 +1059,7 @@ var ColorSpaceConversion;
1059
1059
  ColorSpaceConversion["FORCE_709"] = "FORCE_709";
1060
1060
  ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
1061
1061
  ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
1062
+ ColorSpaceConversion["FORCE_P3D65_HDR"] = "FORCE_P3D65_HDR";
1062
1063
  ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
1063
1064
  ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
1064
1065
  ColorSpaceConversion["NONE"] = "NONE";
@@ -2,14 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateDescribeEndpoints = void 0;
4
4
  const DescribeEndpointsCommand_1 = require("../commands/DescribeEndpointsCommand");
5
- const MediaConvert_1 = require("../MediaConvert");
6
5
  const MediaConvertClient_1 = require("../MediaConvertClient");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new DescribeEndpointsCommand_1.DescribeEndpointsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.describeEndpoints(input, ...args);
12
- };
13
9
  async function* paginateDescribeEndpoints(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateDescribeEndpoints(config, input, ...additionalArguments)
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof MediaConvert_1.MediaConvert) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
16
+ if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -2,14 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListJobTemplates = void 0;
4
4
  const ListJobTemplatesCommand_1 = require("../commands/ListJobTemplatesCommand");
5
- const MediaConvert_1 = require("../MediaConvert");
6
5
  const MediaConvertClient_1 = require("../MediaConvertClient");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListJobTemplatesCommand_1.ListJobTemplatesCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listJobTemplates(input, ...args);
12
- };
13
9
  async function* paginateListJobTemplates(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListJobTemplates(config, input, ...additionalArguments)
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof MediaConvert_1.MediaConvert) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
16
+ if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -2,14 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListJobs = void 0;
4
4
  const ListJobsCommand_1 = require("../commands/ListJobsCommand");
5
- const MediaConvert_1 = require("../MediaConvert");
6
5
  const MediaConvertClient_1 = require("../MediaConvertClient");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListJobsCommand_1.ListJobsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listJobs(input, ...args);
12
- };
13
9
  async function* paginateListJobs(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListJobs(config, input, ...additionalArguments) {
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof MediaConvert_1.MediaConvert) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
16
+ if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -2,14 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListPresets = void 0;
4
4
  const ListPresetsCommand_1 = require("../commands/ListPresetsCommand");
5
- const MediaConvert_1 = require("../MediaConvert");
6
5
  const MediaConvertClient_1 = require("../MediaConvertClient");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListPresetsCommand_1.ListPresetsCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listPresets(input, ...args);
12
- };
13
9
  async function* paginateListPresets(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListPresets(config, input, ...additionalArguments) {
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof MediaConvert_1.MediaConvert) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
16
+ if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -2,14 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListQueues = void 0;
4
4
  const ListQueuesCommand_1 = require("../commands/ListQueuesCommand");
5
- const MediaConvert_1 = require("../MediaConvert");
6
5
  const MediaConvertClient_1 = require("../MediaConvertClient");
7
6
  const makePagedClientRequest = async (client, input, ...args) => {
8
7
  return await client.send(new ListQueuesCommand_1.ListQueuesCommand(input), ...args);
9
8
  };
10
- const makePagedRequest = async (client, input, ...args) => {
11
- return await client.listQueues(input, ...args);
12
- };
13
9
  async function* paginateListQueues(config, input, ...additionalArguments) {
14
10
  let token = config.startingToken || undefined;
15
11
  let hasNext = true;
@@ -17,10 +13,7 @@ async function* paginateListQueues(config, input, ...additionalArguments) {
17
13
  while (hasNext) {
18
14
  input.NextToken = token;
19
15
  input["MaxResults"] = config.pageSize;
20
- if (config.client instanceof MediaConvert_1.MediaConvert) {
21
- page = await makePagedRequest(config.client, input, ...additionalArguments);
22
- }
23
- else if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
16
+ if (config.client instanceof MediaConvertClient_1.MediaConvertClient) {
24
17
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
25
18
  }
26
19
  else {
@@ -850,6 +850,7 @@ export var ColorSpace;
850
850
  ColorSpace["FOLLOW"] = "FOLLOW";
851
851
  ColorSpace["HDR10"] = "HDR10";
852
852
  ColorSpace["HLG_2020"] = "HLG_2020";
853
+ ColorSpace["P3D65_HDR"] = "P3D65_HDR";
853
854
  ColorSpace["P3D65_SDR"] = "P3D65_SDR";
854
855
  ColorSpace["P3DCI"] = "P3DCI";
855
856
  ColorSpace["REC_601"] = "REC_601";
@@ -1051,6 +1051,7 @@ export var ColorSpaceConversion;
1051
1051
  ColorSpaceConversion["FORCE_709"] = "FORCE_709";
1052
1052
  ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
1053
1053
  ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
1054
+ ColorSpaceConversion["FORCE_P3D65_HDR"] = "FORCE_P3D65_HDR";
1054
1055
  ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
1055
1056
  ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
1056
1057
  ColorSpaceConversion["NONE"] = "NONE";
@@ -1,12 +1,8 @@
1
1
  import { DescribeEndpointsCommand, } from "../commands/DescribeEndpointsCommand";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeEndpointsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeEndpoints(input, ...args);
9
- };
10
6
  export async function* paginateDescribeEndpoints(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateDescribeEndpoints(config, input, ...additionalArg
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaConvert) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaConvertClient) {
13
+ if (config.client instanceof MediaConvertClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListJobTemplatesCommand, } from "../commands/ListJobTemplatesCommand";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListJobTemplatesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listJobTemplates(input, ...args);
9
- };
10
6
  export async function* paginateListJobTemplates(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListJobTemplates(config, input, ...additionalArgu
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaConvert) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaConvertClient) {
13
+ if (config.client instanceof MediaConvertClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListJobsCommand } from "../commands/ListJobsCommand";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListJobsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listJobs(input, ...args);
9
- };
10
6
  export async function* paginateListJobs(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListJobs(config, input, ...additionalArguments) {
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaConvert) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaConvertClient) {
13
+ if (config.client instanceof MediaConvertClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListPresetsCommand } from "../commands/ListPresetsCommand";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListPresetsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listPresets(input, ...args);
9
- };
10
6
  export async function* paginateListPresets(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListPresets(config, input, ...additionalArguments
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaConvert) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaConvertClient) {
13
+ if (config.client instanceof MediaConvertClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListQueuesCommand } from "../commands/ListQueuesCommand";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListQueuesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listQueues(input, ...args);
9
- };
10
6
  export async function* paginateListQueues(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListQueues(config, input, ...additionalArguments)
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaConvert) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaConvertClient) {
13
+ if (config.client instanceof MediaConvertClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -2223,6 +2223,7 @@ export declare enum ColorSpace {
2223
2223
  FOLLOW = "FOLLOW",
2224
2224
  HDR10 = "HDR10",
2225
2225
  HLG_2020 = "HLG_2020",
2226
+ P3D65_HDR = "P3D65_HDR",
2226
2227
  P3D65_SDR = "P3D65_SDR",
2227
2228
  P3DCI = "P3DCI",
2228
2229
  REC_601 = "REC_601",
@@ -2314,10 +2315,12 @@ export interface VideoSelector {
2314
2315
  */
2315
2316
  AlphaBehavior?: AlphaBehavior | string;
2316
2317
  /**
2317
- * If your input video has accurate color space metadata, or if you don't know about color space, leave this set to the default value Follow. The service will automatically detect your input color space. If your input video has metadata indicating the wrong color space, specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate, choose Force HDR 10 here and specify correct values in the input HDR 10 metadata settings. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. Select P3D65 (SDR) to set the input color space metadata to the following:
2318
- * * Color primaries: Display P3
2319
- * * Transfer characteristics: SMPTE 428M
2320
- * * Matrix coefficients: BT.709
2318
+ * If your input video has accurate color space metadata, or if you don't know about color space: Keep the default value, Follow. MediaConvert will automatically detect your input color space. If your input video has metadata indicating the wrong color space, or has missing metadata: Specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate: Choose Force HDR 10. Specify correct values in the input HDR 10 metadata settings. For more information about HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. When you specify an input color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
2319
+ * * HDR 10: BT.2020, PQ, BT.2020 non-constant
2320
+ * * HLG 2020: BT.2020, HLG, BT.2020 non-constant
2321
+ * * P3DCI (Theater): DCIP3, SMPTE 428M, BT.709
2322
+ * * P3D65 (SDR): Display P3, sRGB, BT.709
2323
+ * * P3D65 (HDR): Display P3, PQ, BT.709
2321
2324
  */
2322
2325
  ColorSpace?: ColorSpace | string;
2323
2326
  /**
@@ -935,7 +935,7 @@ export declare enum BandwidthReductionFilterStrength {
935
935
  OFF = "OFF"
936
936
  }
937
937
  /**
938
- * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
938
+ * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
939
939
  */
940
940
  export interface BandwidthReductionFilter {
941
941
  /**
@@ -943,7 +943,7 @@ export interface BandwidthReductionFilter {
943
943
  */
944
944
  Sharpening?: BandwidthReductionFilterSharpening | string;
945
945
  /**
946
- * Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto. Your output bandwidth will be reduced by at least 8 percent with no perceptual decrease in video quality. If your output bandwidth isn't constrained, set Filter strength to Low or Medium. Low results in minimal to no impact in perceptual quality. For more bandwidth reduction, choose High. The filter helps equalize quality between all scenes and increases video softness. We recommend that you choose High for low bitrate outputs.
946
+ * Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto to reduce the bandwidth of your output with little to no perceptual decrease in video quality. For high quality and high bitrate outputs, choose Low. For the most bandwidth reduction, choose High. We recommend that you choose High for low bitrate outputs. Note that High may incur a slight increase in the softness of your output.
947
947
  */
948
948
  Strength?: BandwidthReductionFilterStrength | string;
949
949
  }
@@ -1094,7 +1094,7 @@ export interface H264Settings {
1094
1094
  */
1095
1095
  AdaptiveQuantization?: H264AdaptiveQuantization | string;
1096
1096
  /**
1097
- * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
1097
+ * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
1098
1098
  */
1099
1099
  BandwidthReductionFilter?: BandwidthReductionFilter;
1100
1100
  /**
@@ -2503,6 +2503,7 @@ export declare enum ColorSpaceConversion {
2503
2503
  FORCE_709 = "FORCE_709",
2504
2504
  FORCE_HDR10 = "FORCE_HDR10",
2505
2505
  FORCE_HLG_2020 = "FORCE_HLG_2020",
2506
+ FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
2506
2507
  FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
2507
2508
  FORCE_P3DCI = "FORCE_P3DCI",
2508
2509
  NONE = "NONE"
@@ -2529,7 +2530,12 @@ export interface ColorCorrector {
2529
2530
  */
2530
2531
  ClipLimits?: ClipLimits;
2531
2532
  /**
2532
- * Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses Elemental tone mapping technology to approximate the outcome of manually regrading from HDR to SDR. Select Force P3D65 (SDR) to set the output color space metadata to the following: * Color primaries: Display P3 * Transfer characteristics: SMPTE 428M * Matrix coefficients: BT.709
2533
+ * Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses tone mapping to approximate the outcome of manually regrading from HDR to SDR. When you specify an output color space, MediaConvert uses the following color space metadata, which includes color primaries, transfer characteristics, and matrix coefficients:
2534
+ * * HDR 10: BT.2020, PQ, BT.2020 non-constant
2535
+ * * HLG 2020: BT.2020, HLG, BT.2020 non-constant
2536
+ * * P3DCI (Theater): DCIP3, SMPTE 428M, BT.709
2537
+ * * P3D65 (SDR): Display P3, sRGB, BT.709
2538
+ * * P3D65 (HDR): Display P3, PQ, BT.709
2533
2539
  */
2534
2540
  ColorSpaceConversion?: ColorSpaceConversion | string;
2535
2541
  /**
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  export interface MediaConvertPaginationConfiguration extends PaginationConfiguration {
5
- client: MediaConvert | MediaConvertClient;
4
+ client: MediaConvertClient;
6
5
  }
@@ -1162,6 +1162,7 @@ export declare enum ColorSpace {
1162
1162
  FOLLOW = "FOLLOW",
1163
1163
  HDR10 = "HDR10",
1164
1164
  HLG_2020 = "HLG_2020",
1165
+ P3D65_HDR = "P3D65_HDR",
1165
1166
  P3D65_SDR = "P3D65_SDR",
1166
1167
  P3DCI = "P3DCI",
1167
1168
  REC_601 = "REC_601",
@@ -1343,6 +1343,7 @@ export declare enum ColorSpaceConversion {
1343
1343
  FORCE_709 = "FORCE_709",
1344
1344
  FORCE_HDR10 = "FORCE_HDR10",
1345
1345
  FORCE_HLG_2020 = "FORCE_HLG_2020",
1346
+ FORCE_P3D65_HDR = "FORCE_P3D65_HDR",
1346
1347
  FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
1347
1348
  FORCE_P3DCI = "FORCE_P3DCI",
1348
1349
  NONE = "NONE",
@@ -1,7 +1,6 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaConvert } from "../MediaConvert";
3
2
  import { MediaConvertClient } from "../MediaConvertClient";
4
3
  export interface MediaConvertPaginationConfiguration
5
4
  extends PaginationConfiguration {
6
- client: MediaConvert | MediaConvertClient;
5
+ client: MediaConvertClient;
7
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediaconvert",
3
3
  "description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
4
- "version": "3.282.0",
4
+ "version": "3.287.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,23 +20,23 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.282.0",
24
- "@aws-sdk/config-resolver": "3.282.0",
25
- "@aws-sdk/credential-provider-node": "3.282.0",
23
+ "@aws-sdk/client-sts": "3.287.0",
24
+ "@aws-sdk/config-resolver": "3.287.0",
25
+ "@aws-sdk/credential-provider-node": "3.287.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.282.0",
27
27
  "@aws-sdk/hash-node": "3.272.0",
28
28
  "@aws-sdk/invalid-dependency": "3.272.0",
29
29
  "@aws-sdk/middleware-content-length": "3.282.0",
30
30
  "@aws-sdk/middleware-endpoint": "3.282.0",
31
31
  "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.272.0",
32
+ "@aws-sdk/middleware-logger": "3.287.0",
33
33
  "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.282.0",
34
+ "@aws-sdk/middleware-retry": "3.287.0",
35
35
  "@aws-sdk/middleware-serde": "3.272.0",
36
36
  "@aws-sdk/middleware-signing": "3.282.0",
37
37
  "@aws-sdk/middleware-stack": "3.272.0",
38
38
  "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.272.0",
39
+ "@aws-sdk/node-config-provider": "3.287.0",
40
40
  "@aws-sdk/node-http-handler": "3.282.0",
41
41
  "@aws-sdk/protocol-http": "3.282.0",
42
42
  "@aws-sdk/smithy-client": "3.279.0",
@@ -46,11 +46,11 @@
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
48
  "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.282.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
50
  "@aws-sdk/util-endpoints": "3.272.0",
51
51
  "@aws-sdk/util-retry": "3.272.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.282.0",
53
+ "@aws-sdk/util-user-agent-node": "3.287.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1",
56
56
  "uuid": "^8.3.2"