#[non_exhaustive]pub struct GetCaseInputBuilder { /* private fields */ }
Expand description
A builder for GetCaseInput
.
Implementations§
source§impl GetCaseInputBuilder
impl GetCaseInputBuilder
sourcepub fn set_case_id(self, input: Option<String>) -> Self
pub fn set_case_id(self, input: Option<String>) -> Self
A unique identifier of the case.
sourcepub fn get_case_id(&self) -> &Option<String>
pub fn get_case_id(&self) -> &Option<String>
A unique identifier of the case.
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 fields(self, input: FieldIdentifier) -> Self
pub fn fields(self, input: FieldIdentifier) -> Self
Appends an item to fields
.
To override the contents of this collection use set_fields
.
A list of unique field identifiers.
sourcepub fn set_fields(self, input: Option<Vec<FieldIdentifier>>) -> Self
pub fn set_fields(self, input: Option<Vec<FieldIdentifier>>) -> Self
A list of unique field identifiers.
sourcepub fn get_fields(&self) -> &Option<Vec<FieldIdentifier>>
pub fn get_fields(&self) -> &Option<Vec<FieldIdentifier>>
A list of unique field identifiers.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn build(self) -> Result<GetCaseInput, BuildError>
pub fn build(self) -> Result<GetCaseInput, BuildError>
Consumes the builder and constructs a GetCaseInput
.
source§impl GetCaseInputBuilder
impl GetCaseInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetCaseOutput, SdkError<GetCaseError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetCaseOutput, SdkError<GetCaseError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetCaseInputBuilder
impl Clone for GetCaseInputBuilder
source§fn clone(&self) -> GetCaseInputBuilder
fn clone(&self) -> GetCaseInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetCaseInputBuilder
impl Debug for GetCaseInputBuilder
source§impl Default for GetCaseInputBuilder
impl Default for GetCaseInputBuilder
source§fn default() -> GetCaseInputBuilder
fn default() -> GetCaseInputBuilder
source§impl PartialEq for GetCaseInputBuilder
impl PartialEq for GetCaseInputBuilder
source§fn eq(&self, other: &GetCaseInputBuilder) -> bool
fn eq(&self, other: &GetCaseInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.