Struct aws_sdk_finspace::operation::update_kx_database::builders::UpdateKxDatabaseOutputBuilder
source · #[non_exhaustive]pub struct UpdateKxDatabaseOutputBuilder { /* private fields */ }Expand description
A builder for UpdateKxDatabaseOutput.
Implementations§
source§impl UpdateKxDatabaseOutputBuilder
impl UpdateKxDatabaseOutputBuilder
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the kdb 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 kdb database.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the kdb database.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
A unique identifier for the kdb environment.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the database.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the database.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the database.
sourcepub fn last_modified_timestamp(self, input: DateTime) -> Self
pub fn last_modified_timestamp(self, input: DateTime) -> Self
The last time that the database was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn set_last_modified_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_timestamp(self, input: Option<DateTime>) -> Self
The last time that the database was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn get_last_modified_timestamp(&self) -> &Option<DateTime>
pub fn get_last_modified_timestamp(&self) -> &Option<DateTime>
The last time that the database was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn build(self) -> UpdateKxDatabaseOutput
pub fn build(self) -> UpdateKxDatabaseOutput
Consumes the builder and constructs a UpdateKxDatabaseOutput.
Trait Implementations§
source§impl Clone for UpdateKxDatabaseOutputBuilder
impl Clone for UpdateKxDatabaseOutputBuilder
source§fn clone(&self) -> UpdateKxDatabaseOutputBuilder
fn clone(&self) -> UpdateKxDatabaseOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateKxDatabaseOutputBuilder
impl Default for UpdateKxDatabaseOutputBuilder
source§fn default() -> UpdateKxDatabaseOutputBuilder
fn default() -> UpdateKxDatabaseOutputBuilder
source§impl PartialEq for UpdateKxDatabaseOutputBuilder
impl PartialEq for UpdateKxDatabaseOutputBuilder
source§fn eq(&self, other: &UpdateKxDatabaseOutputBuilder) -> bool
fn eq(&self, other: &UpdateKxDatabaseOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKxDatabaseOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateKxDatabaseOutputBuilder
impl RefUnwindSafe for UpdateKxDatabaseOutputBuilder
impl Send for UpdateKxDatabaseOutputBuilder
impl Sync for UpdateKxDatabaseOutputBuilder
impl Unpin for UpdateKxDatabaseOutputBuilder
impl UnwindSafe for UpdateKxDatabaseOutputBuilder
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