Interface RouterInputAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RouterInputAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.212Z")
@Stability(Experimental)
public interface RouterInputAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.mediaconnect.alpha.*;
RouterInputAttributes routerInputAttributes = RouterInputAttributes.builder()
.routerInputArn("routerInputArn")
// the properties below are optional
.ipAddress("ipAddress")
.routerInputId("routerInputId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRouterInputAttributesstatic final classAn implementation forRouterInputAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRouterInputArn
(experimental) The Amazon Resource Name (ARN) of the router input. -
getIpAddress
(experimental) The IP address that the router input uses to ingest content.Default: - accessing `ipAddress` on the imported input throws; only provide when available.
-
getRouterInputId
(experimental) The unique identifier of the router input.Default: - accessing `routerInputId` on the imported input throws; only provide when available.
-
builder
- Returns:
- a
RouterInputAttributes.BuilderofRouterInputAttributes
-