#[non_exhaustive]pub struct ListFieldsInputBuilder { /* private fields */ }
Expand description
A builder for ListFieldsInput
.
Implementations§
source§impl ListFieldsInputBuilder
impl ListFieldsInputBuilder
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 max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return per page.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return per page.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return per page.
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<ListFieldsInput, BuildError>
pub fn build(self) -> Result<ListFieldsInput, BuildError>
Consumes the builder and constructs a ListFieldsInput
.
source§impl ListFieldsInputBuilder
impl ListFieldsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListFieldsOutput, SdkError<ListFieldsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListFieldsOutput, SdkError<ListFieldsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListFieldsInputBuilder
impl Clone for ListFieldsInputBuilder
source§fn clone(&self) -> ListFieldsInputBuilder
fn clone(&self) -> ListFieldsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListFieldsInputBuilder
impl Debug for ListFieldsInputBuilder
source§impl Default for ListFieldsInputBuilder
impl Default for ListFieldsInputBuilder
source§fn default() -> ListFieldsInputBuilder
fn default() -> ListFieldsInputBuilder
source§impl PartialEq for ListFieldsInputBuilder
impl PartialEq for ListFieldsInputBuilder
source§fn eq(&self, other: &ListFieldsInputBuilder) -> bool
fn eq(&self, other: &ListFieldsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.