pub struct DescribeClientVpnRoutesRequest {
pub client_vpn_endpoint_id: String,
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§client_vpn_endpoint_id: StringThe ID of the Client VPN endpoint.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
filters: Option<Vec<Filter>>One or more filters. Filter names and values are case-sensitive.
-
destination-cidr- The CIDR of the route destination. -
origin- How the route was associated with the Client VPN endpoint (associate|add-route). -
target-subnet- The ID of the subnet through which traffic is routed.
max_results: Option<i64>The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the nextToken value.
next_token: Option<String>The token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for DescribeClientVpnRoutesRequest
impl Clone for DescribeClientVpnRoutesRequest
Source§fn clone(&self) -> DescribeClientVpnRoutesRequest
fn clone(&self) -> DescribeClientVpnRoutesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeClientVpnRoutesRequest
impl Default for DescribeClientVpnRoutesRequest
Source§fn default() -> DescribeClientVpnRoutesRequest
fn default() -> DescribeClientVpnRoutesRequest
Source§impl PartialEq for DescribeClientVpnRoutesRequest
impl PartialEq for DescribeClientVpnRoutesRequest
Source§fn eq(&self, other: &DescribeClientVpnRoutesRequest) -> bool
fn eq(&self, other: &DescribeClientVpnRoutesRequest) -> bool
self and other values to be equal, and is used by ==.