Struct aws_sdk_mediaconnect::types::BridgeFlowSource
source · #[non_exhaustive]pub struct BridgeFlowSource {
pub flow_arn: Option<String>,
pub flow_vpc_interface_attachment: Option<VpcInterfaceAttachment>,
pub name: Option<String>,
pub output_arn: Option<String>,
}Expand description
The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
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_arn: Option<String>The ARN of the cloud flow used as a source of this bridge.
flow_vpc_interface_attachment: Option<VpcInterfaceAttachment>The name of the VPC interface attachment to use for this source.
name: Option<String>The name of the flow source.
output_arn: Option<String>The Amazon Resource Number (ARN) of the output.
Implementations§
source§impl BridgeFlowSource
impl BridgeFlowSource
sourcepub fn flow_arn(&self) -> Option<&str>
pub fn flow_arn(&self) -> Option<&str>
The ARN of the cloud flow used as a source of this bridge.
sourcepub fn flow_vpc_interface_attachment(&self) -> Option<&VpcInterfaceAttachment>
pub fn flow_vpc_interface_attachment(&self) -> Option<&VpcInterfaceAttachment>
The name of the VPC interface attachment to use for this source.
sourcepub fn output_arn(&self) -> Option<&str>
pub fn output_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the output.
source§impl BridgeFlowSource
impl BridgeFlowSource
sourcepub fn builder() -> BridgeFlowSourceBuilder
pub fn builder() -> BridgeFlowSourceBuilder
Creates a new builder-style object to manufacture BridgeFlowSource.
Trait Implementations§
source§impl Clone for BridgeFlowSource
impl Clone for BridgeFlowSource
source§fn clone(&self) -> BridgeFlowSource
fn clone(&self) -> BridgeFlowSource
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 BridgeFlowSource
impl Debug for BridgeFlowSource
source§impl PartialEq for BridgeFlowSource
impl PartialEq for BridgeFlowSource
source§fn eq(&self, other: &BridgeFlowSource) -> bool
fn eq(&self, other: &BridgeFlowSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BridgeFlowSource
Auto Trait Implementations§
impl RefUnwindSafe for BridgeFlowSource
impl Send for BridgeFlowSource
impl Sync for BridgeFlowSource
impl Unpin for BridgeFlowSource
impl UnwindSafe for BridgeFlowSource
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.