interface RouterOutputAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterOutputAttributes |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterOutputAttributes |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterOutputAttributes |
Python | aws_cdk.aws_mediaconnect_alpha.RouterOutputAttributes |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterOutputAttributes |
Attributes for importing an existing Router Output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const routerOutputAttributes: mediaconnect_alpha.RouterOutputAttributes = {
routerOutputArn: 'routerOutputArn',
// the properties below are optional
routerOutputId: 'routerOutputId',
routerOutputName: 'routerOutputName',
};
Properties
| Name | Type | Description |
|---|---|---|
| router | string | The ARN of the router output. |
| router | string | The unique identifier of the router output. |
| router | string | The name of the router output. |
routerOutputArn
Type:
string
The ARN of the router output.
routerOutputId?
Type:
string
(optional, default: parsed from the ARN when available)
The unique identifier of the router output.
routerOutputName?
Type:
string
(optional, default: routerOutputName is not available on the imported construct)
The name of the router output.
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.

.NET
Go
Java
Python
TypeScript (