#[non_exhaustive]pub struct CreateKxEnvironmentInput {
pub name: Option<String>,
pub description: Option<String>,
pub kms_key_id: 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.name: Option<String>The name of the kdb environment that you want to create.
description: Option<String>A description for the kdb environment.
kms_key_id: Option<String>The KMS key ID to encrypt your data in the FinSpace environment.
A list of key-value pairs to label the kdb environment. You can add up to 50 tags to your kdb environment.
client_token: Option<String>A token that ensures idempotency. This token expires in 10 minutes.
Implementations§
source§impl CreateKxEnvironmentInput
impl CreateKxEnvironmentInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the kdb environment.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The KMS key ID to encrypt your data in the FinSpace environment.
A list of key-value pairs to label the kdb environment. You can add up to 50 tags to your kdb environment.
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 CreateKxEnvironmentInput
impl CreateKxEnvironmentInput
sourcepub fn builder() -> CreateKxEnvironmentInputBuilder
pub fn builder() -> CreateKxEnvironmentInputBuilder
Creates a new builder-style object to manufacture CreateKxEnvironmentInput.
Trait Implementations§
source§impl Clone for CreateKxEnvironmentInput
impl Clone for CreateKxEnvironmentInput
source§fn clone(&self) -> CreateKxEnvironmentInput
fn clone(&self) -> CreateKxEnvironmentInput
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 CreateKxEnvironmentInput
impl Debug for CreateKxEnvironmentInput
source§impl PartialEq for CreateKxEnvironmentInput
impl PartialEq for CreateKxEnvironmentInput
source§fn eq(&self, other: &CreateKxEnvironmentInput) -> bool
fn eq(&self, other: &CreateKxEnvironmentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateKxEnvironmentInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateKxEnvironmentInput
impl Send for CreateKxEnvironmentInput
impl Sync for CreateKxEnvironmentInput
impl Unpin for CreateKxEnvironmentInput
impl UnwindSafe for CreateKxEnvironmentInput
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