#[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 ==.impl StructuralPartialEq for ListControlsInputBuilder
Auto Trait Implementations§
impl Freeze for ListControlsInputBuilder
impl RefUnwindSafe for ListControlsInputBuilder
impl Send for ListControlsInputBuilder
impl Sync for ListControlsInputBuilder
impl Unpin for ListControlsInputBuilder
impl UnwindSafe for ListControlsInputBuilder
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> 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