#[non_exhaustive]pub struct GetKxDatabaseOutput {
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>,
pub last_completed_changeset_id: Option<String>,
pub num_bytes: i64,
pub num_changesets: i32,
pub num_files: i32,
/* 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 for which the information is retrieved.
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 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.
last_completed_changeset_id: Option<String>A unique identifier for the changeset.
num_bytes: i64The total number of bytes in the database.
num_changesets: i32The total number of changesets in the database.
num_files: i32The total number of files in the database.
Implementations§
source§impl GetKxDatabaseOutput
impl GetKxDatabaseOutput
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the kdb database for which the information is retrieved.
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 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 last_completed_changeset_id(&self) -> Option<&str>
pub fn last_completed_changeset_id(&self) -> Option<&str>
A unique identifier for the changeset.
sourcepub fn num_changesets(&self) -> i32
pub fn num_changesets(&self) -> i32
The total number of changesets in the database.
source§impl GetKxDatabaseOutput
impl GetKxDatabaseOutput
sourcepub fn builder() -> GetKxDatabaseOutputBuilder
pub fn builder() -> GetKxDatabaseOutputBuilder
Creates a new builder-style object to manufacture GetKxDatabaseOutput.
Trait Implementations§
source§impl Clone for GetKxDatabaseOutput
impl Clone for GetKxDatabaseOutput
source§fn clone(&self) -> GetKxDatabaseOutput
fn clone(&self) -> GetKxDatabaseOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetKxDatabaseOutput
impl Debug for GetKxDatabaseOutput
source§impl PartialEq for GetKxDatabaseOutput
impl PartialEq for GetKxDatabaseOutput
source§fn eq(&self, other: &GetKxDatabaseOutput) -> bool
fn eq(&self, other: &GetKxDatabaseOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetKxDatabaseOutput
impl RequestId for GetKxDatabaseOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetKxDatabaseOutput
Auto Trait Implementations§
impl Freeze for GetKxDatabaseOutput
impl RefUnwindSafe for GetKxDatabaseOutput
impl Send for GetKxDatabaseOutput
impl Sync for GetKxDatabaseOutput
impl Unpin for GetKxDatabaseOutput
impl UnwindSafe for GetKxDatabaseOutput
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