Show / Hide Table of Contents

Interface ICfnTransitGatewayPeeringAttachmentProps

Properties for defining a CfnTransitGatewayPeeringAttachment.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnTransitGatewayPeeringAttachmentProps
Syntax (vb)
Public Interface ICfnTransitGatewayPeeringAttachmentProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnTransitGatewayPeeringAttachmentProps = new CfnTransitGatewayPeeringAttachmentProps {
                 PeerAccountId = "peerAccountId",
                 PeerRegion = "peerRegion",
                 PeerTransitGatewayId = "peerTransitGatewayId",
                 TransitGatewayId = "transitGatewayId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

PeerAccountId

The ID of the AWS account that owns the transit gateway.

PeerRegion

The Region where the transit gateway that you want to create the peer for is located.

PeerTransitGatewayId

The ID of the transit gateway in the PeerRegion.

Tags

The tags for the transit gateway peering attachment.

TransitGatewayId

The ID of the transit gateway peering attachment.

Properties

PeerAccountId

The ID of the AWS account that owns the transit gateway.

string PeerAccountId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peeraccountid

PeerRegion

The Region where the transit gateway that you want to create the peer for is located.

string PeerRegion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peerregion

PeerTransitGatewayId

The ID of the transit gateway in the PeerRegion.

string PeerTransitGatewayId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peertransitgatewayid

Tags

The tags for the transit gateway peering attachment.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-tags

TransitGatewayId

The ID of the transit gateway peering attachment.

string TransitGatewayId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-transitgatewayid

Back to top Generated by DocFX