interface RouterInputAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterInputAttributes |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterInputAttributes |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterInputAttributes |
Python | aws_cdk.aws_mediaconnect_alpha.RouterInputAttributes |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterInputAttributes |
Attributes for importing an existing Router Input.
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 routerInputAttributes: mediaconnect_alpha.RouterInputAttributes = {
routerInputArn: 'routerInputArn',
// the properties below are optional
ipAddress: 'ipAddress',
routerInputId: 'routerInputId',
};
Properties
| Name | Type | Description |
|---|---|---|
| router | string | The Amazon Resource Name (ARN) of the router input. |
| ip | string | The IP address that the router input uses to ingest content. |
| router | string | The unique identifier of the router input. |
routerInputArn
Type:
string
The Amazon Resource Name (ARN) of the router input.
ipAddress?
Type:
string
(optional, default: accessing ipAddress on the imported input throws; only provide when available.)
The IP address that the router input uses to ingest content.
routerInputId?
Type:
string
(optional, default: accessing routerInputId on the imported input throws; only provide when available.)
The unique identifier of the router input.

.NET
Go
Java
Python
TypeScript (