Struct aws_sdk_mediaconnect::types::BridgeSource
source · #[non_exhaustive]pub struct BridgeSource {
pub flow_source: Option<BridgeFlowSource>,
pub network_source: Option<BridgeNetworkSource>,
}Expand description
The bridge’s 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.flow_source: Option<BridgeFlowSource>The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
network_source: Option<BridgeNetworkSource>The source of the bridge. A network source originates at your premises.
Implementations§
source§impl BridgeSource
impl BridgeSource
sourcepub fn flow_source(&self) -> Option<&BridgeFlowSource>
pub fn flow_source(&self) -> Option<&BridgeFlowSource>
The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
sourcepub fn network_source(&self) -> Option<&BridgeNetworkSource>
pub fn network_source(&self) -> Option<&BridgeNetworkSource>
The source of the bridge. A network source originates at your premises.
source§impl BridgeSource
impl BridgeSource
sourcepub fn builder() -> BridgeSourceBuilder
pub fn builder() -> BridgeSourceBuilder
Creates a new builder-style object to manufacture BridgeSource.
Trait Implementations§
source§impl Clone for BridgeSource
impl Clone for BridgeSource
source§fn clone(&self) -> BridgeSource
fn clone(&self) -> BridgeSource
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 BridgeSource
impl Debug for BridgeSource
source§impl PartialEq for BridgeSource
impl PartialEq for BridgeSource
source§fn eq(&self, other: &BridgeSource) -> bool
fn eq(&self, other: &BridgeSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BridgeSource
Auto Trait Implementations§
impl RefUnwindSafe for BridgeSource
impl Send for BridgeSource
impl Sync for BridgeSource
impl Unpin for BridgeSource
impl UnwindSafe for BridgeSource
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.