Struct aws_sdk_elasticache::types::PendingModifiedValues
source · #[non_exhaustive]pub struct PendingModifiedValues {
pub num_cache_nodes: Option<i32>,
pub cache_node_ids_to_remove: Option<Vec<String>>,
pub engine_version: Option<String>,
pub cache_node_type: Option<String>,
pub auth_token_status: Option<AuthTokenUpdateStatus>,
pub log_delivery_configurations: Option<Vec<PendingLogDeliveryConfiguration>>,
pub transit_encryption_enabled: Option<bool>,
pub transit_encryption_mode: Option<TransitEncryptionMode>,
}
Expand description
A group of settings that are applied to the cluster in the future, or that are currently being applied.
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.num_cache_nodes: Option<i32>
The new number of cache nodes for the cluster.
For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.
cache_node_ids_to_remove: Option<Vec<String>>
A list of cache node IDs that are being removed (or will be removed) from the cluster. A node ID is a 4-digit numeric identifier (0001, 0002, etc.).
engine_version: Option<String>
The new cache engine version that the cluster runs.
cache_node_type: Option<String>
The cache node type that this cluster or replication group is scaled to.
auth_token_status: Option<AuthTokenUpdateStatus>
The auth token status
log_delivery_configurations: Option<Vec<PendingLogDeliveryConfiguration>>
The log delivery configurations being modified
transit_encryption_enabled: Option<bool>
A flag that enables in-transit encryption when set to true.
transit_encryption_mode: Option<TransitEncryptionMode>
A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
Implementations§
source§impl PendingModifiedValues
impl PendingModifiedValues
sourcepub fn num_cache_nodes(&self) -> Option<i32>
pub fn num_cache_nodes(&self) -> Option<i32>
The new number of cache nodes for the cluster.
For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.
sourcepub fn cache_node_ids_to_remove(&self) -> &[String]
pub fn cache_node_ids_to_remove(&self) -> &[String]
A list of cache node IDs that are being removed (or will be removed) from the cluster. A node ID is a 4-digit numeric identifier (0001, 0002, etc.).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cache_node_ids_to_remove.is_none()
.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The new cache engine version that the cluster runs.
sourcepub fn cache_node_type(&self) -> Option<&str>
pub fn cache_node_type(&self) -> Option<&str>
The cache node type that this cluster or replication group is scaled to.
sourcepub fn auth_token_status(&self) -> Option<&AuthTokenUpdateStatus>
pub fn auth_token_status(&self) -> Option<&AuthTokenUpdateStatus>
The auth token status
sourcepub fn log_delivery_configurations(&self) -> &[PendingLogDeliveryConfiguration]
pub fn log_delivery_configurations(&self) -> &[PendingLogDeliveryConfiguration]
The log delivery configurations being modified
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .log_delivery_configurations.is_none()
.
sourcepub fn transit_encryption_enabled(&self) -> Option<bool>
pub fn transit_encryption_enabled(&self) -> Option<bool>
A flag that enables in-transit encryption when set to true.
sourcepub fn transit_encryption_mode(&self) -> Option<&TransitEncryptionMode>
pub fn transit_encryption_mode(&self) -> Option<&TransitEncryptionMode>
A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
source§impl PendingModifiedValues
impl PendingModifiedValues
sourcepub fn builder() -> PendingModifiedValuesBuilder
pub fn builder() -> PendingModifiedValuesBuilder
Creates a new builder-style object to manufacture PendingModifiedValues
.
Trait Implementations§
source§impl Clone for PendingModifiedValues
impl Clone for PendingModifiedValues
source§fn clone(&self) -> PendingModifiedValues
fn clone(&self) -> PendingModifiedValues
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PendingModifiedValues
impl Debug for PendingModifiedValues
source§impl PartialEq for PendingModifiedValues
impl PartialEq for PendingModifiedValues
source§fn eq(&self, other: &PendingModifiedValues) -> bool
fn eq(&self, other: &PendingModifiedValues) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PendingModifiedValues
Auto Trait Implementations§
impl Freeze for PendingModifiedValues
impl RefUnwindSafe for PendingModifiedValues
impl Send for PendingModifiedValues
impl Sync for PendingModifiedValues
impl Unpin for PendingModifiedValues
impl UnwindSafe for PendingModifiedValues
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