Show / Hide Table of Contents

Class MultiplexReference

A reference to a Multiplex resource.

Inheritance
object
MultiplexReference
Implements
IMultiplexReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MultiplexReference : IMultiplexReference
Syntax (vb)
Public Class MultiplexReference Implements IMultiplexReference
Remarks

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.Interfaces.MediaLive;

            var multiplexReference = new MultiplexReference {
                MultiplexArn = "multiplexArn",
                MultiplexId = "multiplexId"
            };

Synopsis

Constructors

MultiplexReference()

A reference to a Multiplex resource.

Properties

MultiplexArn

The ARN of the Multiplex resource.

MultiplexId

The Id of the Multiplex resource.

Constructors

MultiplexReference()

A reference to a Multiplex resource.

public MultiplexReference()
Remarks

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.Interfaces.MediaLive;

            var multiplexReference = new MultiplexReference {
                MultiplexArn = "multiplexArn",
                MultiplexId = "multiplexId"
            };

Properties

MultiplexArn

The ARN of the Multiplex resource.

public string MultiplexArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

MultiplexId

The Id of the Multiplex resource.

public string MultiplexId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IMultiplexReference
Back to top Generated by DocFX