#[non_exhaustive]pub struct FlowAssociationSummaryBuilder { /* private fields */ }
Expand description
A builder for FlowAssociationSummary
.
Implementations§
source§impl FlowAssociationSummaryBuilder
impl FlowAssociationSummaryBuilder
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The identifier of the resource.
sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The identifier of the resource.
sourcepub fn get_resource_id(&self) -> &Option<String>
pub fn get_resource_id(&self) -> &Option<String>
The identifier of the resource.
sourcepub fn set_flow_id(self, input: Option<String>) -> Self
pub fn set_flow_id(self, input: Option<String>) -> Self
The identifier of the flow.
sourcepub fn get_flow_id(&self) -> &Option<String>
pub fn get_flow_id(&self) -> &Option<String>
The identifier of the flow.
sourcepub fn resource_type(self, input: ListFlowAssociationResourceType) -> Self
pub fn resource_type(self, input: ListFlowAssociationResourceType) -> Self
The type of resource association.
sourcepub fn set_resource_type(
self,
input: Option<ListFlowAssociationResourceType>
) -> Self
pub fn set_resource_type( self, input: Option<ListFlowAssociationResourceType> ) -> Self
The type of resource association.
sourcepub fn get_resource_type(&self) -> &Option<ListFlowAssociationResourceType>
pub fn get_resource_type(&self) -> &Option<ListFlowAssociationResourceType>
The type of resource association.
sourcepub fn build(self) -> FlowAssociationSummary
pub fn build(self) -> FlowAssociationSummary
Consumes the builder and constructs a FlowAssociationSummary
.
Trait Implementations§
source§impl Clone for FlowAssociationSummaryBuilder
impl Clone for FlowAssociationSummaryBuilder
source§fn clone(&self) -> FlowAssociationSummaryBuilder
fn clone(&self) -> FlowAssociationSummaryBuilder
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 Default for FlowAssociationSummaryBuilder
impl Default for FlowAssociationSummaryBuilder
source§fn default() -> FlowAssociationSummaryBuilder
fn default() -> FlowAssociationSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for FlowAssociationSummaryBuilder
impl PartialEq for FlowAssociationSummaryBuilder
source§fn eq(&self, other: &FlowAssociationSummaryBuilder) -> bool
fn eq(&self, other: &FlowAssociationSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FlowAssociationSummaryBuilder
Auto Trait Implementations§
impl Freeze for FlowAssociationSummaryBuilder
impl RefUnwindSafe for FlowAssociationSummaryBuilder
impl Send for FlowAssociationSummaryBuilder
impl Sync for FlowAssociationSummaryBuilder
impl Unpin for FlowAssociationSummaryBuilder
impl UnwindSafe for FlowAssociationSummaryBuilder
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.