pub struct StopCrawlerFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to StopCrawler.
If the specified crawler is running, stops the crawl.
Implementations§
source§impl StopCrawlerFluentBuilder
impl StopCrawlerFluentBuilder
sourcepub fn as_input(&self) -> &StopCrawlerInputBuilder
pub fn as_input(&self) -> &StopCrawlerInputBuilder
Access the StopCrawler as a reference.
sourcepub async fn send(
self
) -> Result<StopCrawlerOutput, SdkError<StopCrawlerError, HttpResponse>>
pub async fn send( self ) -> Result<StopCrawlerOutput, SdkError<StopCrawlerError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StopCrawlerOutput, StopCrawlerError>, SdkError<StopCrawlerError>>
pub async fn customize( self ) -> Result<CustomizableOperation<StopCrawlerOutput, StopCrawlerError>, SdkError<StopCrawlerError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Trait Implementations§
source§impl Clone for StopCrawlerFluentBuilder
impl Clone for StopCrawlerFluentBuilder
source§fn clone(&self) -> StopCrawlerFluentBuilder
fn clone(&self) -> StopCrawlerFluentBuilder
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for StopCrawlerFluentBuilder
impl Send for StopCrawlerFluentBuilder
impl Sync for StopCrawlerFluentBuilder
impl Unpin for StopCrawlerFluentBuilder
impl !UnwindSafe for StopCrawlerFluentBuilder
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