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
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) -> &[KxDatabaseConfiguration]
pub fn databases(&self) -> &[KxDatabaseConfiguration]
The structure of databases mounted on the cluster.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .databases.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateKxClusterDatabasesInput
impl PartialEq for UpdateKxClusterDatabasesInput
source§fn eq(&self, other: &UpdateKxClusterDatabasesInput) -> bool
fn eq(&self, other: &UpdateKxClusterDatabasesInput) -> bool
self
and other
values to be equal, and is used
by ==
.