Interface CfnPresetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPresetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:29.699Z")
@Stability(Stable)
public interface CfnPresetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPresetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconvert.*;
Object settingsJson;
Object tags;
CfnPresetMixinProps cfnPresetMixinProps = CfnPresetMixinProps.builder()
.category("category")
.description("description")
.name("name")
.settingsJson(settingsJson)
.tags(tags)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPresetMixinPropsstatic final classAn implementation forCfnPresetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPresetMixinProps.Builderbuilder()default StringThe new category for the preset, if you are changing it.default StringThe new description for the preset, if you are changing it.default StringgetName()The name of the preset that you are modifying.default ObjectSpecify, in JSON format, the transcoding job settings for this output preset.default ObjectgetTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategory
The new category for the preset, if you are changing it.- See Also:
-
getDescription
The new description for the preset, if you are changing it.- See Also:
-
getName
The name of the preset that you are modifying.- See Also:
-
getSettingsJson
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 ** .
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnPresetMixinProps.BuilderofCfnPresetMixinProps
-