Show / Hide Table of Contents

Class TransitGatewayBlackholeRouteProps

(experimental) Properties for a Transit Gateway Blackhole Route.

Inheritance
object
TransitGatewayBlackholeRouteProps
Implements
ITransitGatewayBlackholeRouteProps
IBaseTransitGatewayRouteProps
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.Alpha
Assembly: Amazon.CDK.AWS.ec2.Alpha.dll
Syntax (csharp)
public class TransitGatewayBlackholeRouteProps : ITransitGatewayBlackholeRouteProps, IBaseTransitGatewayRouteProps
Syntax (vb)
Public Class TransitGatewayBlackholeRouteProps Implements ITransitGatewayBlackholeRouteProps, IBaseTransitGatewayRouteProps
Remarks

Stability: Experimental

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.Alpha;

             TransitGatewayRouteTable transitGatewayRouteTable;

             var transitGatewayBlackholeRouteProps = new TransitGatewayBlackholeRouteProps {
                 DestinationCidrBlock = "destinationCidrBlock",
                 TransitGatewayRouteTable = transitGatewayRouteTable,

                 // the properties below are optional
                 TransitGatewayRouteName = "transitGatewayRouteName"
             };

Synopsis

Constructors

TransitGatewayBlackholeRouteProps()

(experimental) Properties for a Transit Gateway Blackhole Route.

Properties

DestinationCidrBlock

(experimental) The destination CIDR block for this route.

TransitGatewayRouteName

(experimental) Physical name of this Transit Gateway Route.

TransitGatewayRouteTable

(experimental) The transit gateway route table you want to install this route into.

Constructors

TransitGatewayBlackholeRouteProps()

(experimental) Properties for a Transit Gateway Blackhole Route.

public TransitGatewayBlackholeRouteProps()
Remarks

Stability: Experimental

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.Alpha;

             TransitGatewayRouteTable transitGatewayRouteTable;

             var transitGatewayBlackholeRouteProps = new TransitGatewayBlackholeRouteProps {
                 DestinationCidrBlock = "destinationCidrBlock",
                 TransitGatewayRouteTable = transitGatewayRouteTable,

                 // the properties below are optional
                 TransitGatewayRouteName = "transitGatewayRouteName"
             };

Properties

DestinationCidrBlock

(experimental) The destination CIDR block for this route.

public string DestinationCidrBlock { get; set; }
Property Value

string

Remarks

Destination Cidr cannot overlap for static routes but is allowed for propagated routes. When overlapping occurs, static routes take precedence over propagated routes.

Stability: Experimental

TransitGatewayRouteName

(experimental) Physical name of this Transit Gateway Route.

public string? TransitGatewayRouteName { get; set; }
Property Value

string

Remarks

Default: - Assigned by CloudFormation.

Stability: Experimental

TransitGatewayRouteTable

(experimental) The transit gateway route table you want to install this route into.

public ITransitGatewayRouteTable TransitGatewayRouteTable { get; set; }
Property Value

ITransitGatewayRouteTable

Remarks

Stability: Experimental

Implements

ITransitGatewayBlackholeRouteProps
IBaseTransitGatewayRouteProps
Back to top Generated by DocFX