#[non_exhaustive]pub struct AddBridgeFlowSourceRequest {
pub flow_arn: Option<String>,
pub flow_vpc_interface_attachment: Option<VpcInterfaceAttachment>,
pub name: Option<String>,
}Expand description
Add a flow source to an existing 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.flow_arn: Option<String>The Amazon Resource Number (ARN) of the cloud flow to use 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. This name is used to reference the source and must be unique among sources in this bridge.
Implementations§
source§impl AddBridgeFlowSourceRequest
impl AddBridgeFlowSourceRequest
sourcepub fn flow_arn(&self) -> Option<&str>
pub fn flow_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the cloud flow to use 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.
source§impl AddBridgeFlowSourceRequest
impl AddBridgeFlowSourceRequest
sourcepub fn builder() -> AddBridgeFlowSourceRequestBuilder
pub fn builder() -> AddBridgeFlowSourceRequestBuilder
Creates a new builder-style object to manufacture AddBridgeFlowSourceRequest.
Trait Implementations§
source§impl Clone for AddBridgeFlowSourceRequest
impl Clone for AddBridgeFlowSourceRequest
source§fn clone(&self) -> AddBridgeFlowSourceRequest
fn clone(&self) -> AddBridgeFlowSourceRequest
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 AddBridgeFlowSourceRequest
impl Debug for AddBridgeFlowSourceRequest
source§impl PartialEq for AddBridgeFlowSourceRequest
impl PartialEq for AddBridgeFlowSourceRequest
source§fn eq(&self, other: &AddBridgeFlowSourceRequest) -> bool
fn eq(&self, other: &AddBridgeFlowSourceRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AddBridgeFlowSourceRequest
Auto Trait Implementations§
impl RefUnwindSafe for AddBridgeFlowSourceRequest
impl Send for AddBridgeFlowSourceRequest
impl Sync for AddBridgeFlowSourceRequest
impl Unpin for AddBridgeFlowSourceRequest
impl UnwindSafe for AddBridgeFlowSourceRequest
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.