#[non_exhaustive]pub struct CreateKxDatabaseOutput {
pub database_name: Option<String>,
pub database_arn: Option<String>,
pub environment_id: Option<String>,
pub description: Option<String>,
pub created_timestamp: Option<DateTime>,
pub last_modified_timestamp: Option<DateTime>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.database_name: Option<String>The name of the kdb database.
database_arn: Option<String>The ARN identifier of the database.
environment_id: Option<String>A unique identifier for the kdb environment.
description: Option<String>A description of the database.
created_timestamp: Option<DateTime>The timestamp at which the database is created in FinSpace. 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.
last_modified_timestamp: Option<DateTime>The last time that the database was updated in FinSpace. 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.
Implementations§
source§impl CreateKxDatabaseOutput
impl CreateKxDatabaseOutput
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the kdb database.
sourcepub fn database_arn(&self) -> Option<&str>
pub fn database_arn(&self) -> Option<&str>
The ARN identifier of the database.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
A unique identifier for the kdb environment.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the database.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The timestamp at which the database is created in FinSpace. 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 last_modified_timestamp(&self) -> Option<&DateTime>
pub fn last_modified_timestamp(&self) -> Option<&DateTime>
The last time that the database was updated in FinSpace. 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.
source§impl CreateKxDatabaseOutput
impl CreateKxDatabaseOutput
sourcepub fn builder() -> CreateKxDatabaseOutputBuilder
pub fn builder() -> CreateKxDatabaseOutputBuilder
Creates a new builder-style object to manufacture CreateKxDatabaseOutput.
Trait Implementations§
source§impl Clone for CreateKxDatabaseOutput
impl Clone for CreateKxDatabaseOutput
source§fn clone(&self) -> CreateKxDatabaseOutput
fn clone(&self) -> CreateKxDatabaseOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateKxDatabaseOutput
impl Debug for CreateKxDatabaseOutput
source§impl PartialEq for CreateKxDatabaseOutput
impl PartialEq for CreateKxDatabaseOutput
source§fn eq(&self, other: &CreateKxDatabaseOutput) -> bool
fn eq(&self, other: &CreateKxDatabaseOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateKxDatabaseOutput
impl RequestId for CreateKxDatabaseOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for CreateKxDatabaseOutput
Auto Trait Implementations§
impl Freeze for CreateKxDatabaseOutput
impl RefUnwindSafe for CreateKxDatabaseOutput
impl Send for CreateKxDatabaseOutput
impl Sync for CreateKxDatabaseOutput
impl Unpin for CreateKxDatabaseOutput
impl UnwindSafe for CreateKxDatabaseOutput
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