#[non_exhaustive]pub struct UpdateTableInputBuilder { /* private fields */ }
Expand description
A builder for UpdateTableInput
.
Implementations§
source§impl UpdateTableInputBuilder
impl UpdateTableInputBuilder
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the Timestream database.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the Timestream database.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the Timestream database.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the Timestream table.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the Timestream table.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the Timestream table.
sourcepub fn retention_properties(self, input: RetentionProperties) -> Self
pub fn retention_properties(self, input: RetentionProperties) -> Self
The retention duration of the memory store and the magnetic store.
sourcepub fn set_retention_properties(
self,
input: Option<RetentionProperties>
) -> Self
pub fn set_retention_properties( self, input: Option<RetentionProperties> ) -> Self
The retention duration of the memory store and the magnetic store.
sourcepub fn get_retention_properties(&self) -> &Option<RetentionProperties>
pub fn get_retention_properties(&self) -> &Option<RetentionProperties>
The retention duration of the memory store and the magnetic store.
sourcepub fn magnetic_store_write_properties(
self,
input: MagneticStoreWriteProperties
) -> Self
pub fn magnetic_store_write_properties( self, input: MagneticStoreWriteProperties ) -> Self
Contains properties to set on the table when enabling magnetic store writes.
sourcepub fn set_magnetic_store_write_properties(
self,
input: Option<MagneticStoreWriteProperties>
) -> Self
pub fn set_magnetic_store_write_properties( self, input: Option<MagneticStoreWriteProperties> ) -> Self
Contains properties to set on the table when enabling magnetic store writes.
sourcepub fn get_magnetic_store_write_properties(
&self
) -> &Option<MagneticStoreWriteProperties>
pub fn get_magnetic_store_write_properties( &self ) -> &Option<MagneticStoreWriteProperties>
Contains properties to set on the table when enabling magnetic store writes.
sourcepub fn set_schema(self, input: Option<Schema>) -> Self
pub fn set_schema(self, input: Option<Schema>) -> Self
The schema of the table.
sourcepub fn get_schema(&self) -> &Option<Schema>
pub fn get_schema(&self) -> &Option<Schema>
The schema of the table.
sourcepub fn build(self) -> Result<UpdateTableInput, BuildError>
pub fn build(self) -> Result<UpdateTableInput, BuildError>
Consumes the builder and constructs a UpdateTableInput
.
source§impl UpdateTableInputBuilder
impl UpdateTableInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateTableOutput, SdkError<UpdateTableError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateTableOutput, SdkError<UpdateTableError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateTableInputBuilder
impl Clone for UpdateTableInputBuilder
source§fn clone(&self) -> UpdateTableInputBuilder
fn clone(&self) -> UpdateTableInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateTableInputBuilder
impl Debug for UpdateTableInputBuilder
source§impl Default for UpdateTableInputBuilder
impl Default for UpdateTableInputBuilder
source§fn default() -> UpdateTableInputBuilder
fn default() -> UpdateTableInputBuilder
source§impl PartialEq<UpdateTableInputBuilder> for UpdateTableInputBuilder
impl PartialEq<UpdateTableInputBuilder> for UpdateTableInputBuilder
source§fn eq(&self, other: &UpdateTableInputBuilder) -> bool
fn eq(&self, other: &UpdateTableInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.