#[non_exhaustive]pub struct ListRulesetsInputBuilder { /* private fields */ }
Expand description
A builder for ListRulesetsInput
.
Implementations§
source§impl ListRulesetsInputBuilder
impl ListRulesetsInputBuilder
sourcepub fn target_arn(self, input: impl Into<String>) -> Self
pub fn target_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of a resource (dataset). Using this parameter indicates to return only those rulesets that are associated with the specified resource.
sourcepub fn set_target_arn(self, input: Option<String>) -> Self
pub fn set_target_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of a resource (dataset). Using this parameter indicates to return only those rulesets that are associated with the specified resource.
sourcepub fn get_target_arn(&self) -> &Option<String>
pub fn get_target_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of a resource (dataset). Using this parameter indicates to return only those rulesets that are associated with the specified resource.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in this request.
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 in this request.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in this request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
sourcepub fn build(self) -> Result<ListRulesetsInput, BuildError>
pub fn build(self) -> Result<ListRulesetsInput, BuildError>
Consumes the builder and constructs a ListRulesetsInput
.
source§impl ListRulesetsInputBuilder
impl ListRulesetsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListRulesetsOutput, SdkError<ListRulesetsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListRulesetsOutput, SdkError<ListRulesetsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRulesetsInputBuilder
impl Clone for ListRulesetsInputBuilder
source§fn clone(&self) -> ListRulesetsInputBuilder
fn clone(&self) -> ListRulesetsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListRulesetsInputBuilder
impl Debug for ListRulesetsInputBuilder
source§impl Default for ListRulesetsInputBuilder
impl Default for ListRulesetsInputBuilder
source§fn default() -> ListRulesetsInputBuilder
fn default() -> ListRulesetsInputBuilder
source§impl PartialEq for ListRulesetsInputBuilder
impl PartialEq for ListRulesetsInputBuilder
impl StructuralPartialEq for ListRulesetsInputBuilder
Auto Trait Implementations§
impl Freeze for ListRulesetsInputBuilder
impl RefUnwindSafe for ListRulesetsInputBuilder
impl Send for ListRulesetsInputBuilder
impl Sync for ListRulesetsInputBuilder
impl Unpin for ListRulesetsInputBuilder
impl UnwindSafe for ListRulesetsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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