aws-cdk-lib.aws_mediaconvert.CfnPresetProps

interface CfnPresetProps

LanguageType name
.NETAmazon.CDK.AWS.MediaConvert.CfnPresetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediaconvert#CfnPresetProps
Javasoftware.amazon.awscdk.services.mediaconvert.CfnPresetProps
Pythonaws_cdk.aws_mediaconvert.CfnPresetProps
TypeScript aws-cdk-lib » aws_mediaconvert » CfnPresetProps

Properties for defining a CfnPreset.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconvert as mediaconvert } from 'aws-cdk-lib';

declare const settingsJson: any;
declare const tags: any;
const cfnPresetProps: mediaconvert.CfnPresetProps = {
  settingsJson: settingsJson,

  // the properties below are optional
  category: 'category',
  description: 'description',
  name: 'name',
  tags: tags,
};

Properties

NameTypeDescription
settingsJsonanySpecify, in JSON format, the transcoding job settings for this output preset.
category?stringThe new category for the preset, if you are changing it.
description?stringThe new description for the preset, if you are changing it.
name?stringThe name of the preset that you are modifying.
tags?anyAn array of key-value pairs to apply to this resource.

settingsJson

Type: any

Specify, in JSON format, the transcoding job settings for this output preset.

This specification must conform to the AWS Elemental MediaConvert job validation. For information about forming this specification, see the Remarks section later in this topic.

For more information about MediaConvert output presets, see Working with AWS Elemental MediaConvert Output Presets in the ** .


category?

Type: string (optional)

The new category for the preset, if you are changing it.


description?

Type: string (optional)

The new description for the preset, if you are changing it.


name?

Type: string (optional)

The name of the preset that you are modifying.


tags?

Type: any (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .