Interface CfnTransitGatewayRouteTableAttachmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayRouteTableAttachmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.882Z")
@Stability(Stable)
public interface CfnTransitGatewayRouteTableAttachmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTransitGatewayRouteTableAttachmentPropsMixin.
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.networkmanager.*;
CfnTransitGatewayRouteTableAttachmentMixinProps cfnTransitGatewayRouteTableAttachmentMixinProps = CfnTransitGatewayRouteTableAttachmentMixinProps.builder()
.networkFunctionGroupName("networkFunctionGroupName")
.peeringId("peeringId")
.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()))
.transitGatewayRouteTableArn("transitGatewayRouteTableArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransitGatewayRouteTableAttachmentMixinPropsstatic final classAn implementation forCfnTransitGatewayRouteTableAttachmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the network function group.default StringThe 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.default StringThe ARN of the transit gateway attachment route table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkFunctionGroupName
The name of the network function group.- See Also:
-
getPeeringId
The ID of the transit gateway peering.- See Also:
-
getProposedNetworkFunctionGroupChange
Describes proposed changes to a network function group.Returns union: either
IResolvableorCfnTransitGatewayRouteTableAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty- See Also:
-
getProposedSegmentChange
This property is read-only.Values can't be assigned to it.
Returns union: either
IResolvableorCfnTransitGatewayRouteTableAttachmentPropsMixin.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:
-
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:
-
builder
-