Class CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty
Describes a route in a transit gateway route table.
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty : CfnNetworkInsightsAnalysis.ITransitGatewayRouteTableRouteProperty
Syntax (vb)
Public Class CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty Implements CfnNetworkInsightsAnalysis.ITransitGatewayRouteTableRouteProperty
Remarks
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 transitGatewayRouteTableRouteProperty = new TransitGatewayRouteTableRouteProperty {
AttachmentId = "attachmentId",
DestinationCidr = "destinationCidr",
PrefixListId = "prefixListId",
ResourceId = "resourceId",
ResourceType = "resourceType",
RouteOrigin = "routeOrigin",
State = "state"
};
Synopsis
Constructors
| TransitGatewayRouteTableRouteProperty() | Describes a route in a transit gateway route table. |
Properties
| AttachmentId | The ID of the route attachment. |
| DestinationCidr | The CIDR block used for destination matches. |
| PrefixListId | The ID of the prefix list. |
| ResourceId | The ID of the resource for the route attachment. |
| ResourceType | The resource type for the route attachment. |
| RouteOrigin | The route origin. The following are the possible values:. |
| State | The state of the route. |
Constructors
TransitGatewayRouteTableRouteProperty()
Describes a route in a transit gateway route table.
public TransitGatewayRouteTableRouteProperty()
Remarks
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 transitGatewayRouteTableRouteProperty = new TransitGatewayRouteTableRouteProperty {
AttachmentId = "attachmentId",
DestinationCidr = "destinationCidr",
PrefixListId = "prefixListId",
ResourceId = "resourceId",
ResourceType = "resourceType",
RouteOrigin = "routeOrigin",
State = "state"
};
Properties
AttachmentId
The ID of the route attachment.
public string? AttachmentId { get; set; }
Property Value
Remarks
DestinationCidr
The CIDR block used for destination matches.
public string? DestinationCidr { get; set; }
Property Value
Remarks
PrefixListId
The ID of the prefix list.
public string? PrefixListId { get; set; }
Property Value
Remarks
ResourceId
The ID of the resource for the route attachment.
public string? ResourceId { get; set; }
Property Value
Remarks
ResourceType
The resource type for the route attachment.
public string? ResourceType { get; set; }
Property Value
Remarks
RouteOrigin
The route origin. The following are the possible values:.
public string? RouteOrigin { get; set; }
Property Value
Remarks
State
The state of the route.
public string? State { get; set; }