#[non_exhaustive]pub struct GetNetworkRoutesInput { /* private fields */ }
Implementations§
source§impl GetNetworkRoutesInput
impl GetNetworkRoutesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNetworkRoutes, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNetworkRoutes, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetNetworkRoutes
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetNetworkRoutesInput
.
source§impl GetNetworkRoutesInput
impl GetNetworkRoutesInput
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn route_table_identifier(&self) -> Option<&RouteTableIdentifier>
pub fn route_table_identifier(&self) -> Option<&RouteTableIdentifier>
The ID of the route table.
sourcepub fn exact_cidr_matches(&self) -> Option<&[String]>
pub fn exact_cidr_matches(&self) -> Option<&[String]>
An exact CIDR block.
sourcepub fn longest_prefix_matches(&self) -> Option<&[String]>
pub fn longest_prefix_matches(&self) -> Option<&[String]>
The most specific route that matches the traffic (longest prefix match).
sourcepub fn subnet_of_matches(&self) -> Option<&[String]>
pub fn subnet_of_matches(&self) -> Option<&[String]>
The routes with a subnet that match the specified CIDR filter.
sourcepub fn supernet_of_matches(&self) -> Option<&[String]>
pub fn supernet_of_matches(&self) -> Option<&[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.
sourcepub fn prefix_list_ids(&self) -> Option<&[String]>
pub fn prefix_list_ids(&self) -> Option<&[String]>
The IDs of the prefix lists.
sourcepub fn states(&self) -> Option<&[RouteState]>
pub fn states(&self) -> Option<&[RouteState]>
The route states.
Trait Implementations§
source§impl Clone for GetNetworkRoutesInput
impl Clone for GetNetworkRoutesInput
source§fn clone(&self) -> GetNetworkRoutesInput
fn clone(&self) -> GetNetworkRoutesInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetNetworkRoutesInput
impl Debug for GetNetworkRoutesInput
source§impl PartialEq<GetNetworkRoutesInput> for GetNetworkRoutesInput
impl PartialEq<GetNetworkRoutesInput> for GetNetworkRoutesInput
source§fn eq(&self, other: &GetNetworkRoutesInput) -> bool
fn eq(&self, other: &GetNetworkRoutesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.