AddFlowOutputOptions

class aws_cdk.aws_mediaconnect_alpha.AddFlowOutputOptions(*, output, description=None, flow_output_name=None, output_status=None)

Bases: object

(experimental) Options for adding an output to a flow.

Parameters:
  • output (OutputConfiguration) – (experimental) The output configuration.

  • description (Optional[str]) – (experimental) A description of the output. Default: - no description

  • flow_output_name (Optional[str]) – (experimental) The name of the flow output. Default: - auto-generated

  • output_status (Optional[State]) – (experimental) Whether the output is enabled. Default: State.ENABLED

Stability:

experimental

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_mediaconnect_alpha as mediaconnect_alpha

# output_configuration: mediaconnect_alpha.OutputConfiguration

add_flow_output_options = mediaconnect_alpha.AddFlowOutputOptions(
    output=output_configuration,

    # the properties below are optional
    description="description",
    flow_output_name="flowOutputName",
    output_status=mediaconnect_alpha.State.ENABLED
)

Attributes

description

(experimental) A description of the output.

Default:
  • no description

Stability:

experimental

flow_output_name

(experimental) The name of the flow output.

Default:
  • auto-generated

Stability:

experimental

output

(experimental) The output configuration.

Stability:

experimental

output_status

(experimental) Whether the output is enabled.

Default:

State.ENABLED

Stability:

experimental