Struct aws_sdk_glue::input::ListCrawlsInput
source · #[non_exhaustive]pub struct ListCrawlsInput { /* private fields */ }Implementations§
source§impl ListCrawlsInput
impl ListCrawlsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCrawls, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCrawls, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCrawls>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCrawlsInput.
source§impl ListCrawlsInput
impl ListCrawlsInput
sourcepub fn crawler_name(&self) -> Option<&str>
pub fn crawler_name(&self) -> Option<&str>
The name of the crawler whose runs you want to retrieve.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return. The default is 20, and maximum is 100.
sourcepub fn filters(&self) -> Option<&[CrawlsFilter]>
pub fn filters(&self) -> Option<&[CrawlsFilter]>
Filters the crawls by the criteria you specify in a list of CrawlsFilter objects.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if this is a continuation call.
Trait Implementations§
source§impl Clone for ListCrawlsInput
impl Clone for ListCrawlsInput
source§fn clone(&self) -> ListCrawlsInput
fn clone(&self) -> ListCrawlsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListCrawlsInput
impl Debug for ListCrawlsInput
source§impl PartialEq<ListCrawlsInput> for ListCrawlsInput
impl PartialEq<ListCrawlsInput> for ListCrawlsInput
source§fn eq(&self, other: &ListCrawlsInput) -> bool
fn eq(&self, other: &ListCrawlsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.