[][src]Struct rusoto_ec2::AnalysisRouteTableRoute

pub struct AnalysisRouteTableRoute {
    pub destination_cidr: Option<String>,
    pub destination_prefix_list_id: Option<String>,
    pub egress_only_internet_gateway_id: Option<String>,
    pub gateway_id: Option<String>,
    pub instance_id: Option<String>,
    pub nat_gateway_id: Option<String>,
    pub network_interface_id: Option<String>,
    pub origin: Option<String>,
    pub transit_gateway_id: Option<String>,
    pub vpc_peering_connection_id: Option<String>,
}

Describes a route table route.

Fields

destination_cidr: Option<String>

The destination IPv4 address, in CIDR notation.

destination_prefix_list_id: Option<String>

The prefix of the AWS service.

egress_only_internet_gateway_id: Option<String>

The ID of an egress-only internet gateway.

gateway_id: Option<String>

The ID of the gateway, such as an internet gateway or virtual private gateway.

instance_id: Option<String>

The ID of the instance, such as a NAT instance.

nat_gateway_id: Option<String>

The ID of a NAT gateway.

network_interface_id: Option<String>

The ID of a network interface.

origin: Option<String>

Describes how the route was created. The following are possible values:

  • CreateRouteTable - The route was automatically created when the route table was created.

  • CreateRoute - The route was manually added to the route table.

  • EnableVgwRoutePropagation - The route was propagated by route propagation.

transit_gateway_id: Option<String>

The ID of a transit gateway.

vpc_peering_connection_id: Option<String>

The ID of a VPC peering connection.

Trait Implementations

impl Clone for AnalysisRouteTableRoute[src]

impl Debug for AnalysisRouteTableRoute[src]

impl Default for AnalysisRouteTableRoute[src]

impl PartialEq<AnalysisRouteTableRoute> for AnalysisRouteTableRoute[src]

impl StructuralPartialEq for AnalysisRouteTableRoute[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.