pub struct SearchLocalGatewayRoutesRequest {
pub dry_run: Option<bool>,
pub filters: Vec<Filter>,
pub local_gateway_route_table_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§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: Vec<Filter>
One or more filters.
local_gateway_route_table_id: String
The ID of the local gateway route table.
max_results: Option<i64>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
next_token: Option<String>
The token for the next page of results.
Trait Implementations§
Source§impl Clone for SearchLocalGatewayRoutesRequest
impl Clone for SearchLocalGatewayRoutesRequest
Source§fn clone(&self) -> SearchLocalGatewayRoutesRequest
fn clone(&self) -> SearchLocalGatewayRoutesRequest
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 Default for SearchLocalGatewayRoutesRequest
impl Default for SearchLocalGatewayRoutesRequest
Source§fn default() -> SearchLocalGatewayRoutesRequest
fn default() -> SearchLocalGatewayRoutesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchLocalGatewayRoutesRequest
impl PartialEq for SearchLocalGatewayRoutesRequest
Source§fn eq(&self, other: &SearchLocalGatewayRoutesRequest) -> bool
fn eq(&self, other: &SearchLocalGatewayRoutesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SearchLocalGatewayRoutesRequest
Auto Trait Implementations§
impl Freeze for SearchLocalGatewayRoutesRequest
impl RefUnwindSafe for SearchLocalGatewayRoutesRequest
impl Send for SearchLocalGatewayRoutesRequest
impl Sync for SearchLocalGatewayRoutesRequest
impl Unpin for SearchLocalGatewayRoutesRequest
impl UnwindSafe for SearchLocalGatewayRoutesRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more