Interface CfnRouterNetworkInterfaceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterNetworkInterfaceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.349Z")
@Stability(Stable)
public interface CfnRouterNetworkInterfaceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRouterNetworkInterfacePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
CfnRouterNetworkInterfaceMixinProps cfnRouterNetworkInterfaceMixinProps = CfnRouterNetworkInterfaceMixinProps.builder()
.configuration(RouterNetworkInterfaceConfigurationProperty.builder()
.public(PublicRouterNetworkInterfaceConfigurationProperty.builder()
.allowRules(List.of(PublicRouterNetworkInterfaceRuleProperty.builder()
.cidr("cidr")
.build()))
.build())
.vpc(VpcRouterNetworkInterfaceConfigurationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetId("subnetId")
.build())
.build())
.name("name")
.regionName("regionName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRouterNetworkInterfaceMixinPropsstatic final classAn implementation forCfnRouterNetworkInterfaceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration settings for a router network interface.default StringgetName()The name of the router network interface.default StringThe AWS Region where the router network interface is located.getTags()Key-value pairs that can be used to tag and organize this router network interface.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
The configuration settings for a router network interface.Returns union: either
IResolvableorCfnRouterNetworkInterfacePropsMixin.RouterNetworkInterfaceConfigurationProperty- See Also:
-
getName
The name of the router network interface.- See Also:
-
getRegionName
The AWS Region where the router network interface is located.- See Also:
-
getTags
Key-value pairs that can be used to tag and organize this router network interface.- See Also:
-
builder
-