Class ChannelReference
A reference to a Channel resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
ChannelId
The Id of the Channel resource.
public string ChannelId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated