Show / Hide Table of Contents

Class CfnTransitGatewayConnectProps

Properties for defining a CfnTransitGatewayConnect.

Inheritance
object
CfnTransitGatewayConnectProps
Implements
ICfnTransitGatewayConnectProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransitGatewayConnectProps : ICfnTransitGatewayConnectProps
Syntax (vb)
Public Class CfnTransitGatewayConnectProps Implements ICfnTransitGatewayConnectProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnect.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 cfnTransitGatewayConnectProps = new CfnTransitGatewayConnectProps {
                 Options = new TransitGatewayConnectOptionsProperty {
                     Protocol = "protocol"
                 },
                 TransportTransitGatewayAttachmentId = "transportTransitGatewayAttachmentId",

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

Synopsis

Constructors

CfnTransitGatewayConnectProps()

Properties for defining a CfnTransitGatewayConnect.

Properties

Options

The Connect attachment options.

Tags

The tags for the attachment.

TransportTransitGatewayAttachmentId

The ID of the attachment from which the Connect attachment was created.

Constructors

CfnTransitGatewayConnectProps()

Properties for defining a CfnTransitGatewayConnect.

public CfnTransitGatewayConnectProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnect.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 cfnTransitGatewayConnectProps = new CfnTransitGatewayConnectProps {
                 Options = new TransitGatewayConnectOptionsProperty {
                     Protocol = "protocol"
                 },
                 TransportTransitGatewayAttachmentId = "transportTransitGatewayAttachmentId",

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

Properties

Options

The Connect attachment options.

public object Options { get; set; }
Property Value

object

Remarks

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

    Type union: either IResolvable or CfnTransitGatewayConnect.ITransitGatewayConnectOptionsProperty

    Tags

    The tags for the attachment.

    public ICfnTag[]? Tags { get; set; }
    Property Value

    ICfnTag[]

    Remarks

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

    TransportTransitGatewayAttachmentId

    The ID of the attachment from which the Connect attachment was created.

    public object TransportTransitGatewayAttachmentId { get; set; }
    Property Value

    object

    Remarks

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

    Type union: either string or ITransitGatewayVpcAttachmentRef

    Implements

    ICfnTransitGatewayConnectProps
    Back to top Generated by DocFX