Struct aws_sdk_connectcases::operation::batch_put_field_options::builders::BatchPutFieldOptionsFluentBuilder
source · pub struct BatchPutFieldOptionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to BatchPutFieldOptions
.
Creates and updates a set of field options for a single select field in a Cases domain.
Implementations§
source§impl BatchPutFieldOptionsFluentBuilder
impl BatchPutFieldOptionsFluentBuilder
sourcepub fn as_input(&self) -> &BatchPutFieldOptionsInputBuilder
pub fn as_input(&self) -> &BatchPutFieldOptionsInputBuilder
Access the BatchPutFieldOptions as a reference.
sourcepub async fn send(
self
) -> Result<BatchPutFieldOptionsOutput, SdkError<BatchPutFieldOptionsError, HttpResponse>>
pub async fn send( self ) -> Result<BatchPutFieldOptionsOutput, SdkError<BatchPutFieldOptionsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchPutFieldOptionsOutput, BatchPutFieldOptionsError, Self>, SdkError<BatchPutFieldOptionsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<BatchPutFieldOptionsOutput, BatchPutFieldOptionsError, Self>, SdkError<BatchPutFieldOptionsError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
pub fn domain_id(self, input: impl Into<String>) -> Self
The unique identifier of the Cases domain.
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The unique identifier of the Cases domain.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The unique identifier of the Cases domain.
sourcepub fn set_field_id(self, input: Option<String>) -> Self
pub fn set_field_id(self, input: Option<String>) -> Self
The unique identifier of a field.
sourcepub fn get_field_id(&self) -> &Option<String>
pub fn get_field_id(&self) -> &Option<String>
The unique identifier of a field.
sourcepub fn options(self, input: FieldOption) -> Self
pub fn options(self, input: FieldOption) -> Self
Appends an item to options
.
To override the contents of this collection use set_options
.
A list of FieldOption
objects.
sourcepub fn set_options(self, input: Option<Vec<FieldOption>>) -> Self
pub fn set_options(self, input: Option<Vec<FieldOption>>) -> Self
A list of FieldOption
objects.
sourcepub fn get_options(&self) -> &Option<Vec<FieldOption>>
pub fn get_options(&self) -> &Option<Vec<FieldOption>>
A list of FieldOption
objects.
Trait Implementations§
source§impl Clone for BatchPutFieldOptionsFluentBuilder
impl Clone for BatchPutFieldOptionsFluentBuilder
source§fn clone(&self) -> BatchPutFieldOptionsFluentBuilder
fn clone(&self) -> BatchPutFieldOptionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more