PresetReference

class aws_cdk.aws_mediaconvert.PresetReference(*, preset_arn, preset_id)

Bases: object

A reference to a Preset resource.

Parameters:
  • preset_arn (str) – The ARN of the Preset resource.

  • preset_id (str) – The Id of the Preset resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_mediaconvert as mediaconvert

preset_reference = mediaconvert.PresetReference(
    preset_arn="presetArn",
    preset_id="presetId"
)

Attributes

preset_arn

The ARN of the Preset resource.

preset_id

The Id of the Preset resource.