Struct aws_sdk_ec2::operation::enable_transit_gateway_route_table_propagation::EnableTransitGatewayRouteTablePropagationOutput
source · #[non_exhaustive]pub struct EnableTransitGatewayRouteTablePropagationOutput {
pub propagation: Option<TransitGatewayPropagation>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.propagation: Option<TransitGatewayPropagation>
Information about route propagation.
Implementations§
source§impl EnableTransitGatewayRouteTablePropagationOutput
impl EnableTransitGatewayRouteTablePropagationOutput
sourcepub fn propagation(&self) -> Option<&TransitGatewayPropagation>
pub fn propagation(&self) -> Option<&TransitGatewayPropagation>
Information about route propagation.
source§impl EnableTransitGatewayRouteTablePropagationOutput
impl EnableTransitGatewayRouteTablePropagationOutput
sourcepub fn builder() -> EnableTransitGatewayRouteTablePropagationOutputBuilder
pub fn builder() -> EnableTransitGatewayRouteTablePropagationOutputBuilder
Creates a new builder-style object to manufacture EnableTransitGatewayRouteTablePropagationOutput
.
Trait Implementations§
source§impl Clone for EnableTransitGatewayRouteTablePropagationOutput
impl Clone for EnableTransitGatewayRouteTablePropagationOutput
source§fn clone(&self) -> EnableTransitGatewayRouteTablePropagationOutput
fn clone(&self) -> EnableTransitGatewayRouteTablePropagationOutput
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 PartialEq<EnableTransitGatewayRouteTablePropagationOutput> for EnableTransitGatewayRouteTablePropagationOutput
impl PartialEq<EnableTransitGatewayRouteTablePropagationOutput> for EnableTransitGatewayRouteTablePropagationOutput
source§fn eq(&self, other: &EnableTransitGatewayRouteTablePropagationOutput) -> bool
fn eq(&self, other: &EnableTransitGatewayRouteTablePropagationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for EnableTransitGatewayRouteTablePropagationOutput
impl RequestId for EnableTransitGatewayRouteTablePropagationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for EnableTransitGatewayRouteTablePropagationOutput
Auto Trait Implementations§
impl RefUnwindSafe for EnableTransitGatewayRouteTablePropagationOutput
impl Send for EnableTransitGatewayRouteTablePropagationOutput
impl Sync for EnableTransitGatewayRouteTablePropagationOutput
impl Unpin for EnableTransitGatewayRouteTablePropagationOutput
impl UnwindSafe for EnableTransitGatewayRouteTablePropagationOutput
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