#[non_exhaustive]pub struct BridgeFlowSourceBuilder { /* private fields */ }Expand description
A builder for BridgeFlowSource.
Implementations§
source§impl BridgeFlowSourceBuilder
impl BridgeFlowSourceBuilder
sourcepub fn flow_arn(self, input: impl Into<String>) -> Self
pub fn flow_arn(self, input: impl Into<String>) -> Self
The ARN of the cloud flow used as a source of this bridge. This field is required.
sourcepub fn set_flow_arn(self, input: Option<String>) -> Self
pub fn set_flow_arn(self, input: Option<String>) -> Self
The ARN of the cloud flow used as a source of this bridge.
sourcepub fn get_flow_arn(&self) -> &Option<String>
pub fn get_flow_arn(&self) -> &Option<String>
The ARN of the cloud flow used as a source of this bridge.
sourcepub fn flow_vpc_interface_attachment(
self,
input: VpcInterfaceAttachment
) -> Self
pub fn flow_vpc_interface_attachment( self, input: VpcInterfaceAttachment ) -> Self
The name of the VPC interface attachment to use for this source.
sourcepub fn set_flow_vpc_interface_attachment(
self,
input: Option<VpcInterfaceAttachment>
) -> Self
pub fn set_flow_vpc_interface_attachment( self, input: Option<VpcInterfaceAttachment> ) -> Self
The name of the VPC interface attachment to use for this source.
sourcepub fn get_flow_vpc_interface_attachment(
&self
) -> &Option<VpcInterfaceAttachment>
pub fn get_flow_vpc_interface_attachment( &self ) -> &Option<VpcInterfaceAttachment>
The name of the VPC interface attachment to use for this source.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the flow source. This field is required.
sourcepub fn output_arn(self, input: impl Into<String>) -> Self
pub fn output_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Number (ARN) of the output.
sourcepub fn set_output_arn(self, input: Option<String>) -> Self
pub fn set_output_arn(self, input: Option<String>) -> Self
The Amazon Resource Number (ARN) of the output.
sourcepub fn get_output_arn(&self) -> &Option<String>
pub fn get_output_arn(&self) -> &Option<String>
The Amazon Resource Number (ARN) of the output.
sourcepub fn build(self) -> BridgeFlowSource
pub fn build(self) -> BridgeFlowSource
Consumes the builder and constructs a BridgeFlowSource.
Trait Implementations§
source§impl Clone for BridgeFlowSourceBuilder
impl Clone for BridgeFlowSourceBuilder
source§fn clone(&self) -> BridgeFlowSourceBuilder
fn clone(&self) -> BridgeFlowSourceBuilder
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 BridgeFlowSourceBuilder
impl Debug for BridgeFlowSourceBuilder
source§impl Default for BridgeFlowSourceBuilder
impl Default for BridgeFlowSourceBuilder
source§fn default() -> BridgeFlowSourceBuilder
fn default() -> BridgeFlowSourceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BridgeFlowSourceBuilder
impl PartialEq for BridgeFlowSourceBuilder
source§fn eq(&self, other: &BridgeFlowSourceBuilder) -> bool
fn eq(&self, other: &BridgeFlowSourceBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BridgeFlowSourceBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BridgeFlowSourceBuilder
impl Send for BridgeFlowSourceBuilder
impl Sync for BridgeFlowSourceBuilder
impl Unpin for BridgeFlowSourceBuilder
impl UnwindSafe for BridgeFlowSourceBuilder
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.