@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.363Z") @Stability(value=Stable) public interface CfnTransitGatewayPeeringAttachmentProps extends software.amazon.jsii.JsiiSerializable
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.ec2.*;
CfnTransitGatewayPeeringAttachmentProps cfnTransitGatewayPeeringAttachmentProps = CfnTransitGatewayPeeringAttachmentProps.builder()
.peerAccountId("peerAccountId")
.peerRegion("peerRegion")
.peerTransitGatewayId("peerTransitGatewayId")
.transitGatewayId("transitGatewayId")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTransitGatewayPeeringAttachmentProps.Builder
A builder for
CfnTransitGatewayPeeringAttachmentProps |
static class |
CfnTransitGatewayPeeringAttachmentProps.Jsii$Proxy
An implementation for
CfnTransitGatewayPeeringAttachmentProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTransitGatewayPeeringAttachmentProps.Builder |
builder() |
String |
getPeerAccountId()
The ID of the AWS account that owns the transit gateway.
|
String |
getPeerRegion()
The Region of the transit gateway.
|
String |
getPeerTransitGatewayId()
The ID of the transit gateway.
|
default List<CfnTag> |
getTags()
The tags for the transit gateway peering attachment.
|
String |
getTransitGatewayId()
The ID of the transit gateway peering attachment.
|
@Stability(value=Stable) @NotNull String getPeerAccountId()
@Stability(value=Stable) @NotNull String getPeerRegion()
@Stability(value=Stable) @NotNull String getPeerTransitGatewayId()
@Stability(value=Stable) @NotNull String getTransitGatewayId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnTransitGatewayPeeringAttachmentProps.Builder builder()
Copyright © 2022. All rights reserved.