pub struct UpdateScheduleFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateSchedule
.
Modifies the definition of an existing DataBrew schedule.
Implementations§
source§impl UpdateScheduleFluentBuilder
impl UpdateScheduleFluentBuilder
sourcepub fn as_input(&self) -> &UpdateScheduleInputBuilder
pub fn as_input(&self) -> &UpdateScheduleInputBuilder
Access the UpdateSchedule as a reference.
sourcepub async fn send(
self,
) -> Result<UpdateScheduleOutput, SdkError<UpdateScheduleError, HttpResponse>>
pub async fn send( self, ) -> Result<UpdateScheduleOutput, SdkError<UpdateScheduleError, 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<UpdateScheduleOutput, UpdateScheduleError, Self>
pub fn customize( self, ) -> CustomizableOperation<UpdateScheduleOutput, UpdateScheduleError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn job_names(self, input: impl Into<String>) -> Self
pub fn job_names(self, input: impl Into<String>) -> Self
Appends an item to JobNames
.
To override the contents of this collection use set_job_names
.
The name or names of one or more jobs to be run for this schedule.
sourcepub fn set_job_names(self, input: Option<Vec<String>>) -> Self
pub fn set_job_names(self, input: Option<Vec<String>>) -> Self
The name or names of one or more jobs to be run for this schedule.
sourcepub fn get_job_names(&self) -> &Option<Vec<String>>
pub fn get_job_names(&self) -> &Option<Vec<String>>
The name or names of one or more jobs to be run for this schedule.
sourcepub fn cron_expression(self, input: impl Into<String>) -> Self
pub fn cron_expression(self, input: impl Into<String>) -> Self
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
sourcepub fn set_cron_expression(self, input: Option<String>) -> Self
pub fn set_cron_expression(self, input: Option<String>) -> Self
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
sourcepub fn get_cron_expression(&self) -> &Option<String>
pub fn get_cron_expression(&self) -> &Option<String>
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
Trait Implementations§
source§impl Clone for UpdateScheduleFluentBuilder
impl Clone for UpdateScheduleFluentBuilder
source§fn clone(&self) -> UpdateScheduleFluentBuilder
fn clone(&self) -> UpdateScheduleFluentBuilder
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 UpdateScheduleFluentBuilder
impl !RefUnwindSafe for UpdateScheduleFluentBuilder
impl Send for UpdateScheduleFluentBuilder
impl Sync for UpdateScheduleFluentBuilder
impl Unpin for UpdateScheduleFluentBuilder
impl !UnwindSafe for UpdateScheduleFluentBuilder
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