pub struct GetTransitGatewayRegistrationsRequest {
pub global_network_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub transit_gateway_arns: Option<Vec<String>>,
}Fields§
§global_network_id: StringThe ID of the global network.
max_results: Option<i64>The maximum number of results to return.
next_token: Option<String>The token for the next page of results.
transit_gateway_arns: Option<Vec<String>>The Amazon Resource Names (ARNs) of one or more transit gateways. The maximum is 10.
Trait Implementations§
Source§impl Clone for GetTransitGatewayRegistrationsRequest
impl Clone for GetTransitGatewayRegistrationsRequest
Source§fn clone(&self) -> GetTransitGatewayRegistrationsRequest
fn clone(&self) -> GetTransitGatewayRegistrationsRequest
Returns a duplicate 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 GetTransitGatewayRegistrationsRequest
impl Default for GetTransitGatewayRegistrationsRequest
Source§fn default() -> GetTransitGatewayRegistrationsRequest
fn default() -> GetTransitGatewayRegistrationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTransitGatewayRegistrationsRequest
impl PartialEq for GetTransitGatewayRegistrationsRequest
Source§fn eq(&self, other: &GetTransitGatewayRegistrationsRequest) -> bool
fn eq(&self, other: &GetTransitGatewayRegistrationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTransitGatewayRegistrationsRequest
Auto Trait Implementations§
impl Freeze for GetTransitGatewayRegistrationsRequest
impl RefUnwindSafe for GetTransitGatewayRegistrationsRequest
impl Send for GetTransitGatewayRegistrationsRequest
impl Sync for GetTransitGatewayRegistrationsRequest
impl Unpin for GetTransitGatewayRegistrationsRequest
impl UnwindSafe for GetTransitGatewayRegistrationsRequest
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