#[non_exhaustive]pub struct UpdateBridgeInput {
pub bridge_arn: Option<String>,
pub egress_gateway_bridge: Option<UpdateEgressGatewayBridgeRequest>,
pub ingress_gateway_bridge: Option<UpdateIngressGatewayBridgeRequest>,
pub source_failover_config: Option<UpdateFailoverConfig>,
}Expand description
A request to update the bridge.
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.bridge_arn: Option<String>The Amazon Resource Number (ARN) of the bridge that you want to update.
egress_gateway_bridge: Option<UpdateEgressGatewayBridgeRequest>§ingress_gateway_bridge: Option<UpdateIngressGatewayBridgeRequest>§source_failover_config: Option<UpdateFailoverConfig>The settings for source failover.
Implementations§
source§impl UpdateBridgeInput
impl UpdateBridgeInput
sourcepub fn bridge_arn(&self) -> Option<&str>
pub fn bridge_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the bridge that you want to update.
pub fn egress_gateway_bridge(&self) -> Option<&UpdateEgressGatewayBridgeRequest>
pub fn ingress_gateway_bridge( &self ) -> Option<&UpdateIngressGatewayBridgeRequest>
sourcepub fn source_failover_config(&self) -> Option<&UpdateFailoverConfig>
pub fn source_failover_config(&self) -> Option<&UpdateFailoverConfig>
The settings for source failover.
source§impl UpdateBridgeInput
impl UpdateBridgeInput
sourcepub fn builder() -> UpdateBridgeInputBuilder
pub fn builder() -> UpdateBridgeInputBuilder
Creates a new builder-style object to manufacture UpdateBridgeInput.
Trait Implementations§
source§impl Clone for UpdateBridgeInput
impl Clone for UpdateBridgeInput
source§fn clone(&self) -> UpdateBridgeInput
fn clone(&self) -> UpdateBridgeInput
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 Debug for UpdateBridgeInput
impl Debug for UpdateBridgeInput
source§impl PartialEq for UpdateBridgeInput
impl PartialEq for UpdateBridgeInput
source§fn eq(&self, other: &UpdateBridgeInput) -> bool
fn eq(&self, other: &UpdateBridgeInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateBridgeInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateBridgeInput
impl Send for UpdateBridgeInput
impl Sync for UpdateBridgeInput
impl Unpin for UpdateBridgeInput
impl UnwindSafe for UpdateBridgeInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.