Show / Hide Table of Contents

Class ChannelReference

A reference to a Channel resource.

Inheritance
object
ChannelReference
Implements
IChannelReference
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 ChannelReference : IChannelReference
Syntax (vb)
Public Class ChannelReference Implements IChannelReference
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 channelReference = new ChannelReference {
                ChannelArn = "channelArn",
                ChannelId = "channelId"
            };

Synopsis

Constructors

ChannelReference()

A reference to a Channel resource.

Properties

ChannelArn

The ARN of the Channel resource.

ChannelId

The Id of the Channel resource.

Constructors

ChannelReference()

A reference to a Channel resource.

public ChannelReference()
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 channelReference = new ChannelReference {
                ChannelArn = "channelArn",
                ChannelId = "channelId"
            };

Properties

ChannelArn

The ARN of the Channel resource.

public string ChannelArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ChannelId

The Id of the Channel resource.

public string ChannelId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IChannelReference
Back to top Generated by DocFX