Class RouterOutputAttributes
(experimental) Attributes for importing an existing Router Output.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaConnect.Alpha
Assembly: Amazon.CDK.AWS.MediaConnect.Alpha.dll
Syntax (csharp)
public class RouterOutputAttributes : IRouterOutputAttributes
Syntax (vb)
Public Class RouterOutputAttributes Implements IRouterOutputAttributes
Remarks
Stability: Experimental
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.Alpha;
var routerOutputAttributes = new RouterOutputAttributes {
RouterOutputArn = "routerOutputArn",
// the properties below are optional
RouterOutputId = "routerOutputId",
RouterOutputName = "routerOutputName"
};
Synopsis
Constructors
| RouterOutputAttributes() | (experimental) Attributes for importing an existing Router Output. |
Properties
| RouterOutputArn | (experimental) The ARN of the router output. |
| RouterOutputId | (experimental) The unique identifier of the router output. |
| RouterOutputName | (experimental) The name of the router output. |
Constructors
RouterOutputAttributes()
(experimental) Attributes for importing an existing Router Output.
public RouterOutputAttributes()
Remarks
Stability: Experimental
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.Alpha;
var routerOutputAttributes = new RouterOutputAttributes {
RouterOutputArn = "routerOutputArn",
// the properties below are optional
RouterOutputId = "routerOutputId",
RouterOutputName = "routerOutputName"
};
Properties
RouterOutputArn
(experimental) The ARN of the router output.
public string RouterOutputArn { get; set; }
Property Value
Remarks
Stability: Experimental
RouterOutputId
(experimental) The unique identifier of the router output.
public string? RouterOutputId { get; set; }
Property Value
Remarks
Default: - parsed from the ARN when available
Stability: Experimental
RouterOutputName
(experimental) The name of the router output.
public string? RouterOutputName { get; set; }
Property Value
Remarks
The name is not encoded in the ARN (the ARN contains only the service-generated ID),
so provide it here if you need to access routerOutputName on the imported construct.
Default: - routerOutputName is not available on the imported construct
Stability: Experimental