#[non_exhaustive]pub struct ListControlsInputBuilder { /* private fields */ }
Expand description
A builder for ListControlsInput
.
Implementations§
source§impl ListControlsInputBuilder
impl ListControlsInputBuilder
sourcepub fn control_type(self, input: ControlType) -> Self
pub fn control_type(self, input: ControlType) -> Self
The type of control, such as a standard control or a custom control.
This field is required.sourcepub fn set_control_type(self, input: Option<ControlType>) -> Self
pub fn set_control_type(self, input: Option<ControlType>) -> Self
The type of control, such as a standard control or a custom control.
sourcepub fn get_control_type(&self) -> &Option<ControlType>
pub fn get_control_type(&self) -> &Option<ControlType>
The type of control, such as a standard control or a custom control.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token that's used to fetch 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 pagination token that's used to fetch the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token that's used to fetch the next set of results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Represents the maximum number of results on a page or for an API request call.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Represents the maximum number of results on a page or for an API request call.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Represents the maximum number of results on a page or for an API request call.
sourcepub fn build(self) -> Result<ListControlsInput, BuildError>
pub fn build(self) -> Result<ListControlsInput, BuildError>
Consumes the builder and constructs a ListControlsInput
.
source§impl ListControlsInputBuilder
impl ListControlsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListControlsOutput, SdkError<ListControlsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListControlsOutput, SdkError<ListControlsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListControlsInputBuilder
impl Clone for ListControlsInputBuilder
source§fn clone(&self) -> ListControlsInputBuilder
fn clone(&self) -> ListControlsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListControlsInputBuilder
impl Debug for ListControlsInputBuilder
source§impl Default for ListControlsInputBuilder
impl Default for ListControlsInputBuilder
source§fn default() -> ListControlsInputBuilder
fn default() -> ListControlsInputBuilder
source§impl PartialEq for ListControlsInputBuilder
impl PartialEq for ListControlsInputBuilder
source§fn eq(&self, other: &ListControlsInputBuilder) -> bool
fn eq(&self, other: &ListControlsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.