#[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<BatchLoadTaskBuilder> for BatchLoadTaskBuilder
impl PartialEq<BatchLoadTaskBuilder> for BatchLoadTaskBuilder
source§fn eq(&self, other: &BatchLoadTaskBuilder) -> bool
fn eq(&self, other: &BatchLoadTaskBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.