CfnPresetProps
- class aws_cdk.aws_mediaconvert.CfnPresetProps(*, settings_json, category=None, description=None, name=None, tags=None)
Bases:
object
Properties for defining a
CfnPreset
.- Parameters:
settings_json (
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 (
Optional
[str
]) – The new category for the preset, if you are changing it.description (
Optional
[str
]) – The new description for the preset, if you are changing it.name (
Optional
[str
]) – The name of the preset that you are modifying.tags (
Optional
[Any
]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-preset.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_mediaconvert as mediaconvert # settings_json: Any # tags: Any cfn_preset_props = mediaconvert.CfnPresetProps( settings_json=settings_json, # the properties below are optional category="category", description="description", name="name", tags=tags )
Attributes
- category
The new category for the preset, if you are changing it.
- description
The new description for the preset, if you are changing it.
- name
The name of the preset that you are modifying.
- settings_json
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 ** .