Show / Hide Table of Contents

Class CfnBridge.BridgeOutputProperty

The output of the bridge.

Inheritance
object
CfnBridge.BridgeOutputProperty
Implements
CfnBridge.IBridgeOutputProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBridge.BridgeOutputProperty : CfnBridge.IBridgeOutputProperty
Syntax (vb)
Public Class CfnBridge.BridgeOutputProperty Implements CfnBridge.IBridgeOutputProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-bridgeoutput.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaConnect;

             var bridgeOutputProperty = new BridgeOutputProperty {
                 NetworkOutput = new BridgeNetworkOutputProperty {
                     IpAddress = "ipAddress",
                     Name = "name",
                     NetworkName = "networkName",
                     Port = 123,
                     Protocol = "protocol",
                     Ttl = 123
                 }
             };

Synopsis

Constructors

BridgeOutputProperty()

The output of the bridge.

Properties

NetworkOutput

The output of the bridge.

Constructors

BridgeOutputProperty()

The output of the bridge.

public BridgeOutputProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-bridgeoutput.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaConnect;

             var bridgeOutputProperty = new BridgeOutputProperty {
                 NetworkOutput = new BridgeNetworkOutputProperty {
                     IpAddress = "ipAddress",
                     Name = "name",
                     NetworkName = "networkName",
                     Port = 123,
                     Protocol = "protocol",
                     Ttl = 123
                 }
             };

Properties

NetworkOutput

The output of the bridge.

public object? NetworkOutput { get; set; }
Property Value

object

Remarks

A network output is delivered to your premises.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-bridgeoutput.html#cfn-mediaconnect-bridge-bridgeoutput-networkoutput

Implements

CfnBridge.IBridgeOutputProperty
Back to top Generated by DocFX