Interface CfnTransitGatewayRouteTableAttachmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayRouteTableAttachmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.986Z")
@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
.networkFunctionGroupName("networkFunctionGroupName")
.proposedNetworkFunctionGroupChange(ProposedNetworkFunctionGroupChangeProperty.builder()
.attachmentPolicyRuleNumber(123)
.networkFunctionGroupName("networkFunctionGroupName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.proposedSegmentChange(ProposedSegmentChangeProperty.builder()
.attachmentPolicyRuleNumber(123)
.segmentName("segmentName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.routingPolicyLabel("routingPolicyLabel")
.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
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the network function group.The ID of the transit gateway peering.default ObjectDescribes proposed changes to a network function group.default ObjectThis property is read-only.default StringRouting policy label.getTags()The list of key-value pairs associated with the transit gateway route table attachment.The ARN of the transit gateway attachment route table.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:
-
getNetworkFunctionGroupName
The name of the network function group.- See Also:
-
getProposedNetworkFunctionGroupChange
Describes proposed changes to a network function group.Returns union: either
IResolvableorCfnTransitGatewayRouteTableAttachment.ProposedNetworkFunctionGroupChangeProperty- See Also:
-
getProposedSegmentChange
This property is read-only.Values can't be assigned to it.
Returns union: either
IResolvableorCfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty- See Also:
-
getRoutingPolicyLabel
Routing policy label.- See Also:
-
getTags
The list of key-value pairs associated with the transit gateway route table attachment.- See Also:
-
builder
-