Struct aws_sdk_connect::operation::disassociate_lambda_function::builders::DisassociateLambdaFunctionInputBuilder
source · #[non_exhaustive]pub struct DisassociateLambdaFunctionInputBuilder { /* private fields */ }
Expand description
A builder for DisassociateLambdaFunctionInput
.
Implementations§
source§impl DisassociateLambdaFunctionInputBuilder
impl DisassociateLambdaFunctionInputBuilder
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 function_arn(self, input: impl Into<String>) -> Self
pub fn function_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Lambda function being disassociated.
This field is required.sourcepub fn set_function_arn(self, input: Option<String>) -> Self
pub fn set_function_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Lambda function being disassociated.
sourcepub fn get_function_arn(&self) -> &Option<String>
pub fn get_function_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Lambda function being disassociated.
sourcepub fn build(self) -> Result<DisassociateLambdaFunctionInput, BuildError>
pub fn build(self) -> Result<DisassociateLambdaFunctionInput, BuildError>
Consumes the builder and constructs a DisassociateLambdaFunctionInput
.
source§impl DisassociateLambdaFunctionInputBuilder
impl DisassociateLambdaFunctionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DisassociateLambdaFunctionOutput, SdkError<DisassociateLambdaFunctionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DisassociateLambdaFunctionOutput, SdkError<DisassociateLambdaFunctionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DisassociateLambdaFunctionInputBuilder
impl Clone for DisassociateLambdaFunctionInputBuilder
source§fn clone(&self) -> DisassociateLambdaFunctionInputBuilder
fn clone(&self) -> DisassociateLambdaFunctionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DisassociateLambdaFunctionInputBuilder
impl Default for DisassociateLambdaFunctionInputBuilder
source§fn default() -> DisassociateLambdaFunctionInputBuilder
fn default() -> DisassociateLambdaFunctionInputBuilder
source§impl PartialEq for DisassociateLambdaFunctionInputBuilder
impl PartialEq for DisassociateLambdaFunctionInputBuilder
source§fn eq(&self, other: &DisassociateLambdaFunctionInputBuilder) -> bool
fn eq(&self, other: &DisassociateLambdaFunctionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DisassociateLambdaFunctionInputBuilder
Auto Trait Implementations§
impl Freeze for DisassociateLambdaFunctionInputBuilder
impl RefUnwindSafe for DisassociateLambdaFunctionInputBuilder
impl Send for DisassociateLambdaFunctionInputBuilder
impl Sync for DisassociateLambdaFunctionInputBuilder
impl Unpin for DisassociateLambdaFunctionInputBuilder
impl UnwindSafe for DisassociateLambdaFunctionInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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