Interface TransitGatewayRouteTableAssociationProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- TransitGatewayRouteTableAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:51.454Z")
@Stability(Experimental)
public interface TransitGatewayRouteTableAssociationProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Common properties for a Transit Gateway Route Table Association.
 
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.*;
 ITransitGatewayAttachment transitGatewayAttachment;
 TransitGatewayRouteTable transitGatewayRouteTable;
 TransitGatewayRouteTableAssociationProps transitGatewayRouteTableAssociationProps = TransitGatewayRouteTableAssociationProps.builder()
         .transitGatewayRouteTable(transitGatewayRouteTable)
         .transitGatewayVpcAttachment(transitGatewayAttachment)
         // the properties below are optional
         .transitGatewayRouteTableAssociationName("transitGatewayRouteTableAssociationName")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTransitGatewayRouteTableAssociationPropsstatic final classAn implementation forTransitGatewayRouteTableAssociationProps
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getTransitGatewayRouteTable(experimental) The ID of the transit gateway route table association.
- 
getTransitGatewayVpcAttachment(experimental) The ID of the transit gateway route table association.
- 
getTransitGatewayRouteTableAssociationName(experimental) Physical name of this association.Default: - Assigned by CloudFormation. 
- 
builder
 
-