Interface CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty.Jsii$Proxy
- Enclosing class:
CfnNetworkInsightsAnalysis
@Stability(Stable)
public static interface CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty
extends software.amazon.jsii.JsiiSerializable
Describes a route in a transit gateway route table.
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.*; TransitGatewayRouteTableRouteProperty transitGatewayRouteTableRouteProperty = TransitGatewayRouteTableRouteProperty.builder() .attachmentId("attachmentId") .destinationCidr("destinationCidr") .prefixListId("prefixListId") .resourceId("resourceId") .resourceType("resourceType") .routeOrigin("routeOrigin") .state("state") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The ID of the route attachment.default String
The CIDR block used for destination matches.default String
The ID of the prefix list.default String
The ID of the resource for the route attachment.default String
The resource type for the route attachment.default String
The route origin.default String
getState()
The state of the route.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachmentId
The ID of the route attachment.- See Also:
-
getDestinationCidr
The CIDR block used for destination matches.- See Also:
-
getPrefixListId
The ID of the prefix list.- See Also:
-
getResourceId
The ID of the resource for the route attachment.- See Also:
-
getResourceType
The resource type for the route attachment.- See Also:
-
getRouteOrigin
The route origin. The following are the possible values:.- static
- propagated
- See Also:
-
getState
The state of the route.- See Also:
-
builder
@Stability(Stable) static CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty.Builder builder()
-