interface CfnPresetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConvert.Mixins.CfnPresetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconvert/mixins#CfnPresetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconvert.mixins.CfnPresetMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconvert.mixins.CfnPresetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconvert » mixins » CfnPresetMixinProps |
Properties for CfnPresetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconvert_mixins } from '@aws-cdk/mixins-preview/aws-mediaconvert';
declare const settingsJson: any;
declare const tags: any;
const cfnPresetMixinProps: mediaconvert_mixins.CfnPresetMixinProps = {
category: 'category',
description: 'description',
name: 'name',
settingsJson: settingsJson,
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| category? | string | The new category for the preset, if you are changing it. |
| description? | string | The new description for the preset, if you are changing it. |
| name? | string | The name of the preset that you are modifying. |
| settings | any | Specify, in JSON format, the transcoding job settings for this output preset. |
| tags? | any | An array of key-value pairs to apply to this resource. |
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.
settingsJson?
Type:
any
(optional)
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 ** .
tags?
Type:
any
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript