Interface CfnTransitGatewayPeeringAttachmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayPeeringAttachmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:25.450Z")
@Stability(Stable)
public interface CfnTransitGatewayPeeringAttachmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTransitGatewayPeeringAttachmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ec2.mixins.*;
CfnTransitGatewayPeeringAttachmentMixinProps cfnTransitGatewayPeeringAttachmentMixinProps = CfnTransitGatewayPeeringAttachmentMixinProps.builder()
.peerAccountId("peerAccountId")
.peerRegion("peerRegion")
.peerTransitGatewayId("peerTransitGatewayId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.transitGatewayId("transitGatewayId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransitGatewayPeeringAttachmentMixinPropsstatic final classAn implementation forCfnTransitGatewayPeeringAttachmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of the AWS account that owns the transit gateway.default StringThe Region where the transit gateway that you want to create the peer for is located.default StringThe ID of the transit gateway in the PeerRegion.getTags()The tags for the transit gateway peering attachment.default StringThe ID of the transit gateway peering attachment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPeerAccountId
The ID of the AWS account that owns the transit gateway.- See Also:
-
getPeerRegion
The Region where the transit gateway that you want to create the peer for is located.- See Also:
-
getPeerTransitGatewayId
The ID of the transit gateway in the PeerRegion.- See Also:
-
getTags
The tags for the transit gateway peering attachment.- See Also:
-
getTransitGatewayId
The ID of the transit gateway peering attachment.- See Also:
-
builder
-