Interface CfnTransitGatewayRouteTableAttachmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayRouteTableAttachmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:58.326Z")
@Stability(Stable)
public interface CfnTransitGatewayRouteTableAttachmentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTransitGatewayRouteTableAttachment.
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.networkmanager.*;
CfnTransitGatewayRouteTableAttachmentProps cfnTransitGatewayRouteTableAttachmentProps = CfnTransitGatewayRouteTableAttachmentProps.builder()
.peeringId("peeringId")
.transitGatewayRouteTableArn("transitGatewayRouteTableArn")
// the properties below are optional
.proposedSegmentChange(ProposedSegmentChangeProperty.builder()
.attachmentPolicyRuleNumber(123)
.segmentName("segmentName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransitGatewayRouteTableAttachmentPropsstatic final classAn implementation forCfnTransitGatewayRouteTableAttachmentProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPeeringId
The ID of the transit gateway peering.- See Also:
-
getTransitGatewayRouteTableArn
The ARN of the transit gateway attachment route table.For example,
"TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456".- See Also:
-
getProposedSegmentChange
This property is read-only.Values can't be assigned to it.
- See Also:
-
getTags
The list of key-value pairs associated with the transit gateway route table attachment.- See Also:
-
builder
-