Interface RouterOutputAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RouterOutputAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.218Z")
@Stability(Experimental)
public interface RouterOutputAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.mediaconnect.alpha.*;
RouterOutputAttributes routerOutputAttributes = RouterOutputAttributes.builder()
.routerOutputArn("routerOutputArn")
// the properties below are optional
.routerOutputId("routerOutputId")
.routerOutputName("routerOutputName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRouterOutputAttributesstatic final classAn implementation forRouterOutputAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRouterOutputArn
(experimental) The ARN of the router output. -
getRouterOutputId
(experimental) The unique identifier of the router output.Default: - parsed from the ARN when available
-
getRouterOutputName
(experimental) 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
routerOutputNameon the imported construct.Default: - routerOutputName is not available on the imported construct
-
builder
- Returns:
- a
RouterOutputAttributes.BuilderofRouterOutputAttributes
-