#[non_exhaustive]pub struct BatchLoadTaskBuilder { /* private fields */ }
Expand description
A builder for BatchLoadTask
.
Implementations§
source§impl BatchLoadTaskBuilder
impl BatchLoadTaskBuilder
sourcepub fn set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
The ID of the batch load task.
sourcepub fn get_task_id(&self) -> &Option<String>
pub fn get_task_id(&self) -> &Option<String>
The ID of the batch load task.
sourcepub fn task_status(self, input: BatchLoadStatus) -> Self
pub fn task_status(self, input: BatchLoadStatus) -> Self
Status of the batch load task.
sourcepub fn set_task_status(self, input: Option<BatchLoadStatus>) -> Self
pub fn set_task_status(self, input: Option<BatchLoadStatus>) -> Self
Status of the batch load task.
sourcepub fn get_task_status(&self) -> &Option<BatchLoadStatus>
pub fn get_task_status(&self) -> &Option<BatchLoadStatus>
Status of the batch load task.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
Database name for the database into which a batch load task loads data.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
Database name for the database into which a batch load task loads data.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
Database name for the database into which a batch load task loads data.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
Table name for the table into which a batch load task loads data.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
Table name for the table into which a batch load task loads data.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
Table name for the table into which a batch load task loads data.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time when the Timestream batch load task was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time when the Timestream batch load task was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time when the Timestream batch load task was created.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The time when the Timestream batch load task was last updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The time when the Timestream batch load task was last updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The time when the Timestream batch load task was last updated.
sourcepub fn resumable_until(self, input: DateTime) -> Self
pub fn resumable_until(self, input: DateTime) -> Self
sourcepub fn set_resumable_until(self, input: Option<DateTime>) -> Self
pub fn set_resumable_until(self, input: Option<DateTime>) -> Self
sourcepub fn get_resumable_until(&self) -> &Option<DateTime>
pub fn get_resumable_until(&self) -> &Option<DateTime>
sourcepub fn build(self) -> BatchLoadTask
pub fn build(self) -> BatchLoadTask
Consumes the builder and constructs a BatchLoadTask
.
Trait Implementations§
source§impl Clone for BatchLoadTaskBuilder
impl Clone for BatchLoadTaskBuilder
source§fn clone(&self) -> BatchLoadTaskBuilder
fn clone(&self) -> BatchLoadTaskBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchLoadTaskBuilder
impl Debug for BatchLoadTaskBuilder
source§impl Default for BatchLoadTaskBuilder
impl Default for BatchLoadTaskBuilder
source§fn default() -> BatchLoadTaskBuilder
fn default() -> BatchLoadTaskBuilder
source§impl PartialEq for BatchLoadTaskBuilder
impl PartialEq for BatchLoadTaskBuilder
impl StructuralPartialEq for BatchLoadTaskBuilder
Auto Trait Implementations§
impl Freeze for BatchLoadTaskBuilder
impl RefUnwindSafe for BatchLoadTaskBuilder
impl Send for BatchLoadTaskBuilder
impl Sync for BatchLoadTaskBuilder
impl Unpin for BatchLoadTaskBuilder
impl UnwindSafe for BatchLoadTaskBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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