Struct aws_sdk_connect::operation::delete_evaluation_form::builders::DeleteEvaluationFormInputBuilder
source · #[non_exhaustive]pub struct DeleteEvaluationFormInputBuilder { /* private fields */ }Expand description
A builder for DeleteEvaluationFormInput.
Implementations§
source§impl DeleteEvaluationFormInputBuilder
impl DeleteEvaluationFormInputBuilder
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 evaluation_form_id(self, input: impl Into<String>) -> Self
pub fn evaluation_form_id(self, input: impl Into<String>) -> Self
The unique identifier for the evaluation form.
This field is required.sourcepub fn set_evaluation_form_id(self, input: Option<String>) -> Self
pub fn set_evaluation_form_id(self, input: Option<String>) -> Self
The unique identifier for the evaluation form.
sourcepub fn get_evaluation_form_id(&self) -> &Option<String>
pub fn get_evaluation_form_id(&self) -> &Option<String>
The unique identifier for the evaluation form.
sourcepub fn evaluation_form_version(self, input: i32) -> Self
pub fn evaluation_form_version(self, input: i32) -> Self
The unique identifier for the evaluation form.
sourcepub fn set_evaluation_form_version(self, input: Option<i32>) -> Self
pub fn set_evaluation_form_version(self, input: Option<i32>) -> Self
The unique identifier for the evaluation form.
sourcepub fn get_evaluation_form_version(&self) -> &Option<i32>
pub fn get_evaluation_form_version(&self) -> &Option<i32>
The unique identifier for the evaluation form.
sourcepub fn build(self) -> Result<DeleteEvaluationFormInput, BuildError>
pub fn build(self) -> Result<DeleteEvaluationFormInput, BuildError>
Consumes the builder and constructs a DeleteEvaluationFormInput.
source§impl DeleteEvaluationFormInputBuilder
impl DeleteEvaluationFormInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteEvaluationFormOutput, SdkError<DeleteEvaluationFormError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteEvaluationFormOutput, SdkError<DeleteEvaluationFormError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteEvaluationFormInputBuilder
impl Clone for DeleteEvaluationFormInputBuilder
source§fn clone(&self) -> DeleteEvaluationFormInputBuilder
fn clone(&self) -> DeleteEvaluationFormInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteEvaluationFormInputBuilder
impl Default for DeleteEvaluationFormInputBuilder
source§fn default() -> DeleteEvaluationFormInputBuilder
fn default() -> DeleteEvaluationFormInputBuilder
source§impl PartialEq for DeleteEvaluationFormInputBuilder
impl PartialEq for DeleteEvaluationFormInputBuilder
source§fn eq(&self, other: &DeleteEvaluationFormInputBuilder) -> bool
fn eq(&self, other: &DeleteEvaluationFormInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteEvaluationFormInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteEvaluationFormInputBuilder
impl RefUnwindSafe for DeleteEvaluationFormInputBuilder
impl Send for DeleteEvaluationFormInputBuilder
impl Sync for DeleteEvaluationFormInputBuilder
impl Unpin for DeleteEvaluationFormInputBuilder
impl UnwindSafe for DeleteEvaluationFormInputBuilder
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