#[non_exhaustive]pub struct UpdateBridgeSourceInput {
pub bridge_arn: Option<String>,
pub flow_source: Option<UpdateBridgeFlowSourceRequest>,
pub network_source: Option<UpdateBridgeNetworkSourceRequest>,
pub source_name: Option<String>,
}Expand description
The fields that you want to update in the bridge source.
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 ARN of the bridge that you want to update.
flow_source: Option<UpdateBridgeFlowSourceRequest>Update the flow source of the bridge.
network_source: Option<UpdateBridgeNetworkSourceRequest>Update the network source of the bridge.
source_name: Option<String>The name of the source that you want to update.
Implementations§
source§impl UpdateBridgeSourceInput
impl UpdateBridgeSourceInput
sourcepub fn bridge_arn(&self) -> Option<&str>
pub fn bridge_arn(&self) -> Option<&str>
The ARN of the bridge that you want to update.
sourcepub fn flow_source(&self) -> Option<&UpdateBridgeFlowSourceRequest>
pub fn flow_source(&self) -> Option<&UpdateBridgeFlowSourceRequest>
Update the flow source of the bridge.
sourcepub fn network_source(&self) -> Option<&UpdateBridgeNetworkSourceRequest>
pub fn network_source(&self) -> Option<&UpdateBridgeNetworkSourceRequest>
Update the network source of the bridge.
sourcepub fn source_name(&self) -> Option<&str>
pub fn source_name(&self) -> Option<&str>
The name of the source that you want to update.
source§impl UpdateBridgeSourceInput
impl UpdateBridgeSourceInput
sourcepub fn builder() -> UpdateBridgeSourceInputBuilder
pub fn builder() -> UpdateBridgeSourceInputBuilder
Creates a new builder-style object to manufacture UpdateBridgeSourceInput.
Trait Implementations§
source§impl Clone for UpdateBridgeSourceInput
impl Clone for UpdateBridgeSourceInput
source§fn clone(&self) -> UpdateBridgeSourceInput
fn clone(&self) -> UpdateBridgeSourceInput
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 UpdateBridgeSourceInput
impl Debug for UpdateBridgeSourceInput
source§impl PartialEq for UpdateBridgeSourceInput
impl PartialEq for UpdateBridgeSourceInput
source§fn eq(&self, other: &UpdateBridgeSourceInput) -> bool
fn eq(&self, other: &UpdateBridgeSourceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateBridgeSourceInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateBridgeSourceInput
impl Send for UpdateBridgeSourceInput
impl Sync for UpdateBridgeSourceInput
impl Unpin for UpdateBridgeSourceInput
impl UnwindSafe for UpdateBridgeSourceInput
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.