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 ==
.impl StructuralPartialEq for UpdateKxClusterDatabasesInput
Auto Trait Implementations§
impl Freeze for UpdateKxClusterDatabasesInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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