Struct aws_sdk_glue::operation::update_crawler_schedule::builders::UpdateCrawlerScheduleFluentBuilder
source · pub struct UpdateCrawlerScheduleFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateCrawlerSchedule.
Updates the schedule of a crawler using a cron expression.
Implementations§
source§impl UpdateCrawlerScheduleFluentBuilder
impl UpdateCrawlerScheduleFluentBuilder
sourcepub fn as_input(&self) -> &UpdateCrawlerScheduleInputBuilder
pub fn as_input(&self) -> &UpdateCrawlerScheduleInputBuilder
Access the UpdateCrawlerSchedule as a reference.
sourcepub async fn send(
self,
) -> Result<UpdateCrawlerScheduleOutput, SdkError<UpdateCrawlerScheduleError, HttpResponse>>
pub async fn send( self, ) -> Result<UpdateCrawlerScheduleOutput, SdkError<UpdateCrawlerScheduleError, 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 fn customize(
self,
) -> CustomizableOperation<UpdateCrawlerScheduleOutput, UpdateCrawlerScheduleError, Self>
pub fn customize( self, ) -> CustomizableOperation<UpdateCrawlerScheduleOutput, UpdateCrawlerScheduleError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn crawler_name(self, input: impl Into<String>) -> Self
pub fn crawler_name(self, input: impl Into<String>) -> Self
The name of the crawler whose schedule to update.
sourcepub fn set_crawler_name(self, input: Option<String>) -> Self
pub fn set_crawler_name(self, input: Option<String>) -> Self
The name of the crawler whose schedule to update.
sourcepub fn get_crawler_name(&self) -> &Option<String>
pub fn get_crawler_name(&self) -> &Option<String>
The name of the crawler whose schedule to update.
sourcepub fn schedule(self, input: impl Into<String>) -> Self
pub fn schedule(self, input: impl Into<String>) -> Self
The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
sourcepub fn set_schedule(self, input: Option<String>) -> Self
pub fn set_schedule(self, input: Option<String>) -> Self
The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
sourcepub fn get_schedule(&self) -> &Option<String>
pub fn get_schedule(&self) -> &Option<String>
The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
Trait Implementations§
source§impl Clone for UpdateCrawlerScheduleFluentBuilder
impl Clone for UpdateCrawlerScheduleFluentBuilder
source§fn clone(&self) -> UpdateCrawlerScheduleFluentBuilder
fn clone(&self) -> UpdateCrawlerScheduleFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateCrawlerScheduleFluentBuilder
impl !RefUnwindSafe for UpdateCrawlerScheduleFluentBuilder
impl Send for UpdateCrawlerScheduleFluentBuilder
impl Sync for UpdateCrawlerScheduleFluentBuilder
impl Unpin for UpdateCrawlerScheduleFluentBuilder
impl !UnwindSafe for UpdateCrawlerScheduleFluentBuilder
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