Struct aws_sdk_glue::operation::get_crawler_metrics::builders::GetCrawlerMetricsInputBuilder
source · #[non_exhaustive]pub struct GetCrawlerMetricsInputBuilder { /* private fields */ }Expand description
A builder for GetCrawlerMetricsInput.
Implementations§
source§impl GetCrawlerMetricsInputBuilder
impl GetCrawlerMetricsInputBuilder
sourcepub fn crawler_name_list(self, input: impl Into<String>) -> Self
pub fn crawler_name_list(self, input: impl Into<String>) -> Self
Appends an item to crawler_name_list.
To override the contents of this collection use set_crawler_name_list.
A list of the names of crawlers about which to retrieve metrics.
sourcepub fn set_crawler_name_list(self, input: Option<Vec<String>>) -> Self
pub fn set_crawler_name_list(self, input: Option<Vec<String>>) -> Self
A list of the names of crawlers about which to retrieve metrics.
sourcepub fn get_crawler_name_list(&self) -> &Option<Vec<String>>
pub fn get_crawler_name_list(&self) -> &Option<Vec<String>>
A list of the names of crawlers about which to retrieve metrics.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum size of a list to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum size of a list to return.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum size of a list to return.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if this is a continuation call.
sourcepub fn build(self) -> Result<GetCrawlerMetricsInput, BuildError>
pub fn build(self) -> Result<GetCrawlerMetricsInput, BuildError>
Consumes the builder and constructs a GetCrawlerMetricsInput.
source§impl GetCrawlerMetricsInputBuilder
impl GetCrawlerMetricsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetCrawlerMetricsOutput, SdkError<GetCrawlerMetricsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetCrawlerMetricsOutput, SdkError<GetCrawlerMetricsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetCrawlerMetricsInputBuilder
impl Clone for GetCrawlerMetricsInputBuilder
source§fn clone(&self) -> GetCrawlerMetricsInputBuilder
fn clone(&self) -> GetCrawlerMetricsInputBuilder
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 Default for GetCrawlerMetricsInputBuilder
impl Default for GetCrawlerMetricsInputBuilder
source§fn default() -> GetCrawlerMetricsInputBuilder
fn default() -> GetCrawlerMetricsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetCrawlerMetricsInputBuilder> for GetCrawlerMetricsInputBuilder
impl PartialEq<GetCrawlerMetricsInputBuilder> for GetCrawlerMetricsInputBuilder
source§fn eq(&self, other: &GetCrawlerMetricsInputBuilder) -> bool
fn eq(&self, other: &GetCrawlerMetricsInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetCrawlerMetricsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetCrawlerMetricsInputBuilder
impl Send for GetCrawlerMetricsInputBuilder
impl Sync for GetCrawlerMetricsInputBuilder
impl Unpin for GetCrawlerMetricsInputBuilder
impl UnwindSafe for GetCrawlerMetricsInputBuilder
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
Mutably borrows from an owned value. Read more