Struct aws_sdk_finspace::operation::update_kx_cluster_databases::UpdateKxClusterDatabasesInput
source · #[non_exhaustive]pub struct UpdateKxClusterDatabasesInput {
pub environment_id: Option<String>,
pub cluster_name: Option<String>,
pub client_token: Option<String>,
pub databases: Option<Vec<KxDatabaseConfiguration>>,
pub deployment_configuration: Option<KxDeploymentConfiguration>,
}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>The unique identifier of a kdb environment.
cluster_name: Option<String>A unique name for the cluster that you want to modify.
client_token: Option<String>A token that ensures idempotency. This token expires in 10 minutes.
databases: Option<Vec<KxDatabaseConfiguration>>The structure of databases mounted on the cluster.
deployment_configuration: Option<KxDeploymentConfiguration>The configuration that allows you to choose how you want to update the databases on a cluster.
Implementations§
source§impl UpdateKxClusterDatabasesInput
impl UpdateKxClusterDatabasesInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The unique identifier of a kdb environment.
sourcepub fn cluster_name(&self) -> Option<&str>
pub fn cluster_name(&self) -> Option<&str>
A unique name for the cluster that you want to modify.
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.
sourcepub fn databases(&self) -> Option<&[KxDatabaseConfiguration]>
pub fn databases(&self) -> Option<&[KxDatabaseConfiguration]>
The structure of databases mounted on the cluster.
sourcepub fn deployment_configuration(&self) -> Option<&KxDeploymentConfiguration>
pub fn deployment_configuration(&self) -> Option<&KxDeploymentConfiguration>
The configuration that allows you to choose how you want to update the databases on a cluster.
source§impl UpdateKxClusterDatabasesInput
impl UpdateKxClusterDatabasesInput
sourcepub fn builder() -> UpdateKxClusterDatabasesInputBuilder
pub fn builder() -> UpdateKxClusterDatabasesInputBuilder
Creates a new builder-style object to manufacture UpdateKxClusterDatabasesInput.
Trait Implementations§
source§impl Clone for UpdateKxClusterDatabasesInput
impl Clone for UpdateKxClusterDatabasesInput
source§fn clone(&self) -> UpdateKxClusterDatabasesInput
fn clone(&self) -> UpdateKxClusterDatabasesInput
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 PartialEq for UpdateKxClusterDatabasesInput
impl PartialEq for UpdateKxClusterDatabasesInput
source§fn eq(&self, other: &UpdateKxClusterDatabasesInput) -> bool
fn eq(&self, other: &UpdateKxClusterDatabasesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKxClusterDatabasesInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKxClusterDatabasesInput
impl Send for UpdateKxClusterDatabasesInput
impl Sync for UpdateKxClusterDatabasesInput
impl Unpin for UpdateKxClusterDatabasesInput
impl UnwindSafe for UpdateKxClusterDatabasesInput
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