pub struct GetTransitGatewayAttachmentPropagationsResult {
pub next_token: Option<String>,
pub transit_gateway_attachment_propagations: Option<Vec<TransitGatewayAttachmentPropagation>>,
}Fields§
§next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
transit_gateway_attachment_propagations: Option<Vec<TransitGatewayAttachmentPropagation>>Information about the propagation route tables.
Trait Implementations§
Source§impl Clone for GetTransitGatewayAttachmentPropagationsResult
impl Clone for GetTransitGatewayAttachmentPropagationsResult
Source§fn clone(&self) -> GetTransitGatewayAttachmentPropagationsResult
fn clone(&self) -> GetTransitGatewayAttachmentPropagationsResult
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 GetTransitGatewayAttachmentPropagationsResult
impl Default for GetTransitGatewayAttachmentPropagationsResult
Source§fn default() -> GetTransitGatewayAttachmentPropagationsResult
fn default() -> GetTransitGatewayAttachmentPropagationsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTransitGatewayAttachmentPropagationsResult
impl PartialEq for GetTransitGatewayAttachmentPropagationsResult
Source§fn eq(&self, other: &GetTransitGatewayAttachmentPropagationsResult) -> bool
fn eq(&self, other: &GetTransitGatewayAttachmentPropagationsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTransitGatewayAttachmentPropagationsResult
Auto Trait Implementations§
impl Freeze for GetTransitGatewayAttachmentPropagationsResult
impl RefUnwindSafe for GetTransitGatewayAttachmentPropagationsResult
impl Send for GetTransitGatewayAttachmentPropagationsResult
impl Sync for GetTransitGatewayAttachmentPropagationsResult
impl Unpin for GetTransitGatewayAttachmentPropagationsResult
impl UnwindSafe for GetTransitGatewayAttachmentPropagationsResult
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