Interface CfnTransitGatewayRouteTableAttachmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayRouteTableAttachmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.486Z")
@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();
-
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. -
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". -
getProposedSegmentChange
This property is read-only.Values can't be assigned to it.
-
getTags
The list of key-value pairs associated with the transit gateway route table attachment. -
builder
-