Struct aws_sdk_connect::operation::update_contact_flow_module_metadata::builders::UpdateContactFlowModuleMetadataInputBuilder
source · #[non_exhaustive]pub struct UpdateContactFlowModuleMetadataInputBuilder { /* private fields */ }
Expand description
A builder for UpdateContactFlowModuleMetadataInput
.
Implementations§
source§impl UpdateContactFlowModuleMetadataInputBuilder
impl UpdateContactFlowModuleMetadataInputBuilder
sourcepub fn instance_id(self, input: impl Into<String>) -> Self
pub fn instance_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
This field is required.sourcepub fn set_instance_id(self, input: Option<String>) -> Self
pub fn set_instance_id(self, input: Option<String>) -> Self
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn get_instance_id(&self) -> &Option<String>
pub fn get_instance_id(&self) -> &Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn contact_flow_module_id(self, input: impl Into<String>) -> Self
pub fn contact_flow_module_id(self, input: impl Into<String>) -> Self
The identifier of the flow module.
This field is required.sourcepub fn set_contact_flow_module_id(self, input: Option<String>) -> Self
pub fn set_contact_flow_module_id(self, input: Option<String>) -> Self
The identifier of the flow module.
sourcepub fn get_contact_flow_module_id(&self) -> &Option<String>
pub fn get_contact_flow_module_id(&self) -> &Option<String>
The identifier of the flow module.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the flow module.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the flow module.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the flow module.
sourcepub fn state(self, input: ContactFlowModuleState) -> Self
pub fn state(self, input: ContactFlowModuleState) -> Self
The state of flow module.
sourcepub fn set_state(self, input: Option<ContactFlowModuleState>) -> Self
pub fn set_state(self, input: Option<ContactFlowModuleState>) -> Self
The state of flow module.
sourcepub fn get_state(&self) -> &Option<ContactFlowModuleState>
pub fn get_state(&self) -> &Option<ContactFlowModuleState>
The state of flow module.
sourcepub fn build(self) -> Result<UpdateContactFlowModuleMetadataInput, BuildError>
pub fn build(self) -> Result<UpdateContactFlowModuleMetadataInput, BuildError>
Consumes the builder and constructs a UpdateContactFlowModuleMetadataInput
.
source§impl UpdateContactFlowModuleMetadataInputBuilder
impl UpdateContactFlowModuleMetadataInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateContactFlowModuleMetadataOutput, SdkError<UpdateContactFlowModuleMetadataError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateContactFlowModuleMetadataOutput, SdkError<UpdateContactFlowModuleMetadataError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateContactFlowModuleMetadataInputBuilder
impl Clone for UpdateContactFlowModuleMetadataInputBuilder
source§fn clone(&self) -> UpdateContactFlowModuleMetadataInputBuilder
fn clone(&self) -> UpdateContactFlowModuleMetadataInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateContactFlowModuleMetadataInputBuilder
impl Default for UpdateContactFlowModuleMetadataInputBuilder
source§fn default() -> UpdateContactFlowModuleMetadataInputBuilder
fn default() -> UpdateContactFlowModuleMetadataInputBuilder
source§impl PartialEq for UpdateContactFlowModuleMetadataInputBuilder
impl PartialEq for UpdateContactFlowModuleMetadataInputBuilder
source§fn eq(&self, other: &UpdateContactFlowModuleMetadataInputBuilder) -> bool
fn eq(&self, other: &UpdateContactFlowModuleMetadataInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateContactFlowModuleMetadataInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateContactFlowModuleMetadataInputBuilder
impl RefUnwindSafe for UpdateContactFlowModuleMetadataInputBuilder
impl Send for UpdateContactFlowModuleMetadataInputBuilder
impl Sync for UpdateContactFlowModuleMetadataInputBuilder
impl Unpin for UpdateContactFlowModuleMetadataInputBuilder
impl UnwindSafe for UpdateContactFlowModuleMetadataInputBuilder
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
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>
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>
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 more