@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.362Z") @Stability(value=Stable) public class CfnTransitGatewayPeeringAttachment extends CfnResource implements IInspectable
Requests a transit gateway peering attachment between the specified transit gateway (requester) and a peer transit gateway (accepter). The transit gateways must be in different Regions. The peer transit gateway can be in your account or a different AWS account .
After you create the peering attachment, the owner of the accepter transit gateway must accept the attachment request.
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.*;
CfnTransitGatewayPeeringAttachment cfnTransitGatewayPeeringAttachment = CfnTransitGatewayPeeringAttachment.Builder.create(this, "MyCfnTransitGatewayPeeringAttachment")
.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 | Class and Description |
|---|---|
static class |
CfnTransitGatewayPeeringAttachment.Builder
A fluent builder for
CfnTransitGatewayPeeringAttachment. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnTransitGatewayPeeringAttachment(software.constructs.Construct scope,
String id,
CfnTransitGatewayPeeringAttachmentProps props)
Create a new `AWS::EC2::TransitGatewayPeeringAttachment`.
|
protected |
CfnTransitGatewayPeeringAttachment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnTransitGatewayPeeringAttachment(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrCreationTime()
The time the transit gateway peering attachment was created.
|
String |
getAttrState()
The state of the transit gateway peering attachment.
|
String |
getAttrTransitGatewayAttachmentId()
The ID of the transit gateway peering attachment.
|
protected Map<String,Object> |
getCfnProperties() |
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.
|
TagManager |
getTags()
The tags for the transit gateway peering attachment.
|
String |
getTransitGatewayId()
The ID of the transit gateway peering attachment.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setPeerAccountId(String value)
The ID of the AWS account that owns the transit gateway.
|
void |
setPeerRegion(String value)
The Region of the transit gateway.
|
void |
setPeerTransitGatewayId(String value)
The ID of the transit gateway.
|
void |
setTransitGatewayId(String value)
The ID of the transit gateway peering attachment.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnTransitGatewayPeeringAttachment(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnTransitGatewayPeeringAttachment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnTransitGatewayPeeringAttachment(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnTransitGatewayPeeringAttachmentProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrCreationTime()
@Stability(value=Stable) @NotNull public String getAttrState()
Note that the initiating state has been deprecated.
@Stability(value=Stable) @NotNull public String getAttrTransitGatewayAttachmentId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public String getPeerAccountId()
@Stability(value=Stable)
public void setPeerAccountId(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getPeerRegion()
@Stability(value=Stable)
public void setPeerRegion(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getPeerTransitGatewayId()
@Stability(value=Stable)
public void setPeerTransitGatewayId(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getTransitGatewayId()
@Stability(value=Stable)
public void setTransitGatewayId(@NotNull
String value)
Copyright © 2022. All rights reserved.