#[non_exhaustive]pub struct CreateKxDatabaseInput {
pub environment_id: Option<String>,
pub database_name: Option<String>,
pub description: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub client_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.environment_id: Option<String>A unique identifier for the kdb environment.
database_name: Option<String>The name of the kdb database.
description: Option<String>A description of the database.
A list of key-value pairs to label the kdb database. You can add up to 50 tags to your kdb database
client_token: Option<String>A token that ensures idempotency. This token expires in 10 minutes.
Implementations§
source§impl CreateKxDatabaseInput
impl CreateKxDatabaseInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
A unique identifier for the kdb environment.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the kdb database.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the database.
A list of key-value pairs to label the kdb database. You can add up to 50 tags to your kdb database
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A token that ensures idempotency. This token expires in 10 minutes.
source§impl CreateKxDatabaseInput
impl CreateKxDatabaseInput
sourcepub fn builder() -> CreateKxDatabaseInputBuilder
pub fn builder() -> CreateKxDatabaseInputBuilder
Creates a new builder-style object to manufacture CreateKxDatabaseInput.
Trait Implementations§
source§impl Clone for CreateKxDatabaseInput
impl Clone for CreateKxDatabaseInput
source§fn clone(&self) -> CreateKxDatabaseInput
fn clone(&self) -> CreateKxDatabaseInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateKxDatabaseInput
impl Debug for CreateKxDatabaseInput
source§impl PartialEq for CreateKxDatabaseInput
impl PartialEq for CreateKxDatabaseInput
source§fn eq(&self, other: &CreateKxDatabaseInput) -> bool
fn eq(&self, other: &CreateKxDatabaseInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateKxDatabaseInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateKxDatabaseInput
impl Send for CreateKxDatabaseInput
impl Sync for CreateKxDatabaseInput
impl Unpin for CreateKxDatabaseInput
impl UnwindSafe for CreateKxDatabaseInput
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
Mutably borrows from an owned value. Read more