Interface TransitGatewayRouteTableProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TransitGatewayRouteTableProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:53.077Z")
@Stability(Experimental)
public interface TransitGatewayRouteTableProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Common properties for creating a Transit Gateway Route Table resource.
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.ec2.alpha.*;
TransitGateway transitGateway;
TransitGatewayRouteTableProps transitGatewayRouteTableProps = TransitGatewayRouteTableProps.builder()
.transitGateway(transitGateway)
// the properties below are optional
.transitGatewayRouteTableName("transitGatewayRouteTableName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTransitGatewayRouteTablePropsstatic final classAn implementation forTransitGatewayRouteTableProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransitGateway
(experimental) The Transit Gateway that this route table belongs to. -
getTransitGatewayRouteTableName
(experimental) Physical name of this Transit Gateway Route Table.Default: - Assigned by CloudFormation.
-
builder
-