FlowVpcInterfaceReference

class aws_cdk.aws_mediaconnect.FlowVpcInterfaceReference(*, flow_arn, flow_vpc_interface_name)

Bases: object

A reference to a FlowVpcInterface resource.

Parameters:
  • flow_arn (str) – The FlowArn of the FlowVpcInterface resource.

  • flow_vpc_interface_name (str) – The Name of the FlowVpcInterface 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_mediaconnect as mediaconnect

flow_vpc_interface_reference = mediaconnect.FlowVpcInterfaceReference(
    flow_arn="flowArn",
    flow_vpc_interface_name="flowVpcInterfaceName"
)

Attributes

flow_arn

The FlowArn of the FlowVpcInterface resource.

flow_vpc_interface_name

The Name of the FlowVpcInterface resource.