#[non_exhaustive]
pub struct GetNetworkRoutesInput { pub global_network_id: Option<String>, pub route_table_identifier: Option<RouteTableIdentifier>, pub exact_cidr_matches: Option<Vec<String>>, pub longest_prefix_matches: Option<Vec<String>>, pub subnet_of_matches: Option<Vec<String>>, pub supernet_of_matches: Option<Vec<String>>, pub prefix_list_ids: Option<Vec<String>>, pub states: Option<Vec<RouteState>>, pub types: Option<Vec<RouteType>>, pub destination_filters: Option<HashMap<String, Vec<String>>>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
global_network_id: Option<String>

The ID of the global network.

route_table_identifier: Option<RouteTableIdentifier>

The ID of the route table.

exact_cidr_matches: Option<Vec<String>>

An exact CIDR block.

longest_prefix_matches: Option<Vec<String>>

The most specific route that matches the traffic (longest prefix match).

subnet_of_matches: Option<Vec<String>>

The routes with a subnet that match the specified CIDR filter.

supernet_of_matches: Option<Vec<String>>

The routes with a CIDR that encompasses the CIDR filter. Example: If you specify 10.0.1.0/30, then the result returns 10.0.1.0/29.

prefix_list_ids: Option<Vec<String>>

The IDs of the prefix lists.

states: Option<Vec<RouteState>>

The route states.

types: Option<Vec<RouteType>>

The route types.

destination_filters: Option<HashMap<String, Vec<String>>>

Filter by route table destination. Possible Values: TRANSIT_GATEWAY_ATTACHMENT_ID, RESOURCE_ID, or RESOURCE_TYPE.

Implementations

Consumes the builder and constructs an Operation<GetNetworkRoutes>

Creates a new builder-style object to manufacture GetNetworkRoutesInput

The ID of the global network.

The ID of the route table.

An exact CIDR block.

The most specific route that matches the traffic (longest prefix match).

The routes with a subnet that match the specified CIDR filter.

The routes with a CIDR that encompasses the CIDR filter. Example: If you specify 10.0.1.0/30, then the result returns 10.0.1.0/29.

The IDs of the prefix lists.

The route states.

The route types.

Filter by route table destination. Possible Values: TRANSIT_GATEWAY_ATTACHMENT_ID, RESOURCE_ID, or RESOURCE_TYPE.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more