amazonka-elasticache-2.0: Amazon ElastiCache SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ElastiCache.Types.PendingModifiedValues

Description

 
Synopsis

Documentation

data PendingModifiedValues Source #

A group of settings that are applied to the cluster in the future, or that are currently being applied.

See: newPendingModifiedValues smart constructor.

Constructors

PendingModifiedValues' 

Fields

Instances

Instances details
FromXML PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

Generic PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

Associated Types

type Rep PendingModifiedValues :: Type -> Type #

Read PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

Show PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

NFData PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

Methods

rnf :: PendingModifiedValues -> () #

Eq PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

Hashable PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

type Rep PendingModifiedValues Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.PendingModifiedValues

type Rep PendingModifiedValues = D1 ('MetaData "PendingModifiedValues" "Amazonka.ElastiCache.Types.PendingModifiedValues" "amazonka-elasticache-2.0-DTWyHgx8JwY7IlNovngF22" 'False) (C1 ('MetaCons "PendingModifiedValues'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "authTokenStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AuthTokenUpdateStatus)) :*: S1 ('MetaSel ('Just "cacheNodeIdsToRemove") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "cacheNodeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "engineVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "logDeliveryConfigurations") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PendingLogDeliveryConfiguration])) :*: S1 ('MetaSel ('Just "numCacheNodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "transitEncryptionEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "transitEncryptionMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TransitEncryptionMode))))))

newPendingModifiedValues :: PendingModifiedValues Source #

Create a value of PendingModifiedValues with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:authTokenStatus:PendingModifiedValues', pendingModifiedValues_authTokenStatus - The auth token status

$sel:cacheNodeIdsToRemove:PendingModifiedValues', pendingModifiedValues_cacheNodeIdsToRemove - 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.).

$sel:cacheNodeType:PendingModifiedValues', pendingModifiedValues_cacheNodeType - The cache node type that this cluster or replication group is scaled to.

$sel:engineVersion:PendingModifiedValues', pendingModifiedValues_engineVersion - The new cache engine version that the cluster runs.

$sel:logDeliveryConfigurations:PendingModifiedValues', pendingModifiedValues_logDeliveryConfigurations - The log delivery configurations being modified

$sel:numCacheNodes:PendingModifiedValues', pendingModifiedValues_numCacheNodes - 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.

$sel:transitEncryptionEnabled:PendingModifiedValues', pendingModifiedValues_transitEncryptionEnabled - A flag that enables in-transit encryption when set to true.

$sel:transitEncryptionMode:PendingModifiedValues', pendingModifiedValues_transitEncryptionMode - A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.

pendingModifiedValues_cacheNodeIdsToRemove :: Lens' PendingModifiedValues (Maybe [Text]) Source #

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.).

pendingModifiedValues_cacheNodeType :: Lens' PendingModifiedValues (Maybe Text) Source #

The cache node type that this cluster or replication group is scaled to.

pendingModifiedValues_engineVersion :: Lens' PendingModifiedValues (Maybe Text) Source #

The new cache engine version that the cluster runs.

pendingModifiedValues_numCacheNodes :: Lens' PendingModifiedValues (Maybe Int) Source #

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.

pendingModifiedValues_transitEncryptionEnabled :: Lens' PendingModifiedValues (Maybe Bool) Source #

A flag that enables in-transit encryption when set to true.

pendingModifiedValues_transitEncryptionMode :: Lens' PendingModifiedValues (Maybe TransitEncryptionMode) Source #

A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.