Amazon ElastiCache

2025/04/10 - Amazon ElastiCache - 5 updated api methods

Changes  AWS ElastiCache SDK now supports using MemcachedUpgradeConfig parameter with ModifyCacheCluster API to enable updating Memcached cache node types. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage and implementation.

CreateCacheCluster (updated) Link ¶
Changes (response)
{'CacheCluster': {'PendingModifiedValues': {'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                                                            'ScalePercentage': 'integer'}}}}

Creates a cluster. All nodes in the cluster run the same protocol-compliant cache engine software, either Memcached, Valkey or Redis OSS.

This operation is not supported for Valkey or Redis OSS (cluster mode enabled) clusters.

See also: AWS API Documentation

Request Syntax

client.create_cache_cluster(
    CacheClusterId='string',
    ReplicationGroupId='string',
    AZMode='single-az'|'cross-az',
    PreferredAvailabilityZone='string',
    PreferredAvailabilityZones=[
        'string',
    ],
    NumCacheNodes=123,
    CacheNodeType='string',
    Engine='string',
    EngineVersion='string',
    CacheParameterGroupName='string',
    CacheSubnetGroupName='string',
    CacheSecurityGroupNames=[
        'string',
    ],
    SecurityGroupIds=[
        'string',
    ],
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    SnapshotArns=[
        'string',
    ],
    SnapshotName='string',
    PreferredMaintenanceWindow='string',
    Port=123,
    NotificationTopicArn='string',
    AutoMinorVersionUpgrade=True|False,
    SnapshotRetentionLimit=123,
    SnapshotWindow='string',
    AuthToken='string',
    OutpostMode='single-outpost'|'cross-outpost',
    PreferredOutpostArn='string',
    PreferredOutpostArns=[
        'string',
    ],
    LogDeliveryConfigurations=[
        {
            'LogType': 'slow-log'|'engine-log',
            'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
            'DestinationDetails': {
                'CloudWatchLogsDetails': {
                    'LogGroup': 'string'
                },
                'KinesisFirehoseDetails': {
                    'DeliveryStream': 'string'
                }
            },
            'LogFormat': 'text'|'json',
            'Enabled': True|False
        },
    ],
    TransitEncryptionEnabled=True|False,
    NetworkType='ipv4'|'ipv6'|'dual_stack',
    IpDiscovery='ipv4'|'ipv6'
)
type CacheClusterId:

string

param CacheClusterId:

[REQUIRED]

The node group (shard) identifier. This parameter is stored as a lowercase string.

Constraints:

  • A name must contain from 1 to 50 alphanumeric characters or hyphens.

  • The first character must be a letter.

  • A name cannot end with a hyphen or contain two consecutive hyphens.

type ReplicationGroupId:

string

param ReplicationGroupId:

The ID of the replication group to which this cluster should belong. If this parameter is specified, the cluster is added to the specified replication group as a read replica; otherwise, the cluster is a standalone primary that is not part of any replication group.

If the specified replication group is Multi-AZ enabled and the Availability Zone is not specified, the cluster is created in Availability Zones that provide the best spread of read replicas across Availability Zones.

type AZMode:

string

param AZMode:

Specifies whether the nodes in this Memcached cluster are created in a single Availability Zone or created across multiple Availability Zones in the cluster's region.

This parameter is only supported for Memcached clusters.

If the AZMode and PreferredAvailabilityZones are not specified, ElastiCache assumes single-az mode.

type PreferredAvailabilityZone:

string

param PreferredAvailabilityZone:

The EC2 Availability Zone in which the cluster is created.

All nodes belonging to this cluster are placed in the preferred Availability Zone. If you want to create your nodes across multiple Availability Zones, use PreferredAvailabilityZones.

Default: System chosen Availability Zone.

type PreferredAvailabilityZones:

list

param PreferredAvailabilityZones:

A list of the Availability Zones in which cache nodes are created. The order of the zones in the list is not important.

This option is only supported on Memcached.

If you want all the nodes in the same Availability Zone, use PreferredAvailabilityZone instead, or repeat the Availability Zone multiple times in the list.

Default: System chosen Availability Zones.

  • (string) --

type NumCacheNodes:

integer

param NumCacheNodes:

The initial number of cache nodes that the cluster has.

For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

If you need more than 40 nodes for your Memcached cluster, please fill out the ElastiCache Limit Increase Request form at http://aws.amazon.com/contact-us/elasticache-node-limit-request/.

type CacheNodeType:

string

param CacheNodeType:

The compute and memory capacity of the nodes in the node group (shard).

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

    • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

    • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

  • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

  • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

type Engine:

string

param Engine:

The name of the cache engine to be used for this cluster.

Valid values for this parameter are: memcached | redis

type EngineVersion:

string

param EngineVersion:

The version number of the cache engine to be used for this cluster. To view the supported cache engine versions, use the DescribeCacheEngineVersions operation.

Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to use an earlier engine version, you must delete the existing cluster or replication group and create it anew with the earlier engine version.

type CacheParameterGroupName:

string

param CacheParameterGroupName:

The name of the parameter group to associate with this cluster. If this argument is omitted, the default parameter group for the specified engine is used. You cannot use any parameter group which has cluster-enabled='yes' when creating a cluster.

type CacheSubnetGroupName:

string

param CacheSubnetGroupName:

The name of the subnet group to be used for the cluster.

Use this parameter only when you are creating a cluster in an Amazon Virtual Private Cloud (Amazon VPC).

type CacheSecurityGroupNames:

list

param CacheSecurityGroupNames:

A list of security group names to associate with this cluster.

Use this parameter only when you are creating a cluster outside of an Amazon Virtual Private Cloud (Amazon VPC).

  • (string) --

type SecurityGroupIds:

list

param SecurityGroupIds:

One or more VPC security groups associated with the cluster.

Use this parameter only when you are creating a cluster in an Amazon Virtual Private Cloud (Amazon VPC).

  • (string) --

type Tags:

list

param Tags:

A list of tags to be added to this resource.

  • (dict) --

    A tag that can be added to an ElastiCache cluster or replication group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your ElastiCache resources, with the exception of global replication group. When you add or remove tags on replication groups, those actions will be replicated to all nodes in the replication group. A tag with a null Value is permitted.

    • Key (string) --

      The key for the tag. May not be null.

    • Value (string) --

      The tag's value. May be null.

type SnapshotArns:

list

param SnapshotArns:

A single-element string list containing an Amazon Resource Name (ARN) that uniquely identifies a Valkey or Redis OSS RDB snapshot file stored in Amazon S3. The snapshot file is used to populate the node group (shard). The Amazon S3 object name in the ARN cannot contain any commas.

Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb

  • (string) --

type SnapshotName:

string

param SnapshotName:

The name of a Valkey or Redis OSS snapshot from which to restore data into the new node group (shard). The snapshot status changes to restoring while the new node group (shard) is being created.

type PreferredMaintenanceWindow:

string

param PreferredMaintenanceWindow:

Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

type Port:

integer

param Port:

The port number on which each of the cache nodes accepts connections.

type NotificationTopicArn:

string

param NotificationTopicArn:

The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent.

type AutoMinorVersionUpgrade:

boolean

param AutoMinorVersionUpgrade:

If you are running Valkey 7.2 and above or Redis OSS engine version 6.0 and above, set this parameter to yes to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

type SnapshotRetentionLimit:

integer

param SnapshotRetentionLimit:

The number of days for which ElastiCache retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot taken today is retained for 5 days before being deleted.

Default: 0 (i.e., automatic backups are disabled for this cache cluster).

type SnapshotWindow:

string

param SnapshotWindow:

The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard).

Example: 05:00-09:00

If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.

type AuthToken:

string

param AuthToken:

Reserved parameter. The password used to access a password protected server.

Password constraints:

  • Must be only printable ASCII characters.

  • Must be at least 16 characters and no more than 128 characters in length.

  • The only permitted printable special characters are !, &, #, $, ^, <, >, and -. Other printable special characters cannot be used in the AUTH token.

For more information, see AUTH password at http://redis.io/commands/AUTH.

type OutpostMode:

string

param OutpostMode:

Specifies whether the nodes in the cluster are created in a single outpost or across multiple outposts.

type PreferredOutpostArn:

string

param PreferredOutpostArn:

The outpost ARN in which the cache cluster is created.

type PreferredOutpostArns:

list

param PreferredOutpostArns:

The outpost ARNs in which the cache cluster is created.

  • (string) --

type LogDeliveryConfigurations:

list

param LogDeliveryConfigurations:

Specifies the destination, format and type of the logs.

  • (dict) --

    Specifies the destination, format and type of the logs.

    • LogType (string) --

      Refers to slow-log or engine-log..

    • DestinationType (string) --

      Specify either cloudwatch-logs or kinesis-firehose as the destination type.

    • DestinationDetails (dict) --

      Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

      • CloudWatchLogsDetails (dict) --

        The configuration details of the CloudWatch Logs destination.

        • LogGroup (string) --

          The name of the CloudWatch Logs log group.

      • KinesisFirehoseDetails (dict) --

        The configuration details of the Kinesis Data Firehose destination.

        • DeliveryStream (string) --

          The name of the Kinesis Data Firehose delivery stream.

    • LogFormat (string) --

      Specifies either JSON or TEXT

    • Enabled (boolean) --

      Specify if log delivery is enabled. Default true.

type TransitEncryptionEnabled:

boolean

param TransitEncryptionEnabled:

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

type NetworkType:

string

param NetworkType:

Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 and Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

type IpDiscovery:

string

param IpDiscovery:

The network type you choose when modifying a cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 and Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

rtype:

dict

returns:

Response Syntax

{
    'CacheCluster': {
        'CacheClusterId': 'string',
        'ConfigurationEndpoint': {
            'Address': 'string',
            'Port': 123
        },
        'ClientDownloadLandingPage': 'string',
        'CacheNodeType': 'string',
        'Engine': 'string',
        'EngineVersion': 'string',
        'CacheClusterStatus': 'string',
        'NumCacheNodes': 123,
        'PreferredAvailabilityZone': 'string',
        'PreferredOutpostArn': 'string',
        'CacheClusterCreateTime': datetime(2015, 1, 1),
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'NumCacheNodes': 123,
            'CacheNodeIdsToRemove': [
                'string',
            ],
            'EngineVersion': 'string',
            'CacheNodeType': 'string',
            'AuthTokenStatus': 'SETTING'|'ROTATING',
            'LogDeliveryConfigurations': [
                {
                    'LogType': 'slow-log'|'engine-log',
                    'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                    'DestinationDetails': {
                        'CloudWatchLogsDetails': {
                            'LogGroup': 'string'
                        },
                        'KinesisFirehoseDetails': {
                            'DeliveryStream': 'string'
                        }
                    },
                    'LogFormat': 'text'|'json'
                },
            ],
            'TransitEncryptionEnabled': True|False,
            'TransitEncryptionMode': 'preferred'|'required',
            'ScaleConfig': {
                'ScalePercentage': 123,
                'ScaleIntervalMinutes': 123
            }
        },
        'NotificationConfiguration': {
            'TopicArn': 'string',
            'TopicStatus': 'string'
        },
        'CacheSecurityGroups': [
            {
                'CacheSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'CacheParameterGroup': {
            'CacheParameterGroupName': 'string',
            'ParameterApplyStatus': 'string',
            'CacheNodeIdsToReboot': [
                'string',
            ]
        },
        'CacheSubnetGroupName': 'string',
        'CacheNodes': [
            {
                'CacheNodeId': 'string',
                'CacheNodeStatus': 'string',
                'CacheNodeCreateTime': datetime(2015, 1, 1),
                'Endpoint': {
                    'Address': 'string',
                    'Port': 123
                },
                'ParameterGroupStatus': 'string',
                'SourceCacheNodeId': 'string',
                'CustomerAvailabilityZone': 'string',
                'CustomerOutpostArn': 'string'
            },
        ],
        'AutoMinorVersionUpgrade': True|False,
        'SecurityGroups': [
            {
                'SecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ReplicationGroupId': 'string',
        'SnapshotRetentionLimit': 123,
        'SnapshotWindow': 'string',
        'AuthTokenEnabled': True|False,
        'AuthTokenLastModifiedDate': datetime(2015, 1, 1),
        'TransitEncryptionEnabled': True|False,
        'AtRestEncryptionEnabled': True|False,
        'ARN': 'string',
        'ReplicationGroupLogDeliveryEnabled': True|False,
        'LogDeliveryConfigurations': [
            {
                'LogType': 'slow-log'|'engine-log',
                'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                'DestinationDetails': {
                    'CloudWatchLogsDetails': {
                        'LogGroup': 'string'
                    },
                    'KinesisFirehoseDetails': {
                        'DeliveryStream': 'string'
                    }
                },
                'LogFormat': 'text'|'json',
                'Status': 'active'|'enabling'|'modifying'|'disabling'|'error',
                'Message': 'string'
            },
        ],
        'NetworkType': 'ipv4'|'ipv6'|'dual_stack',
        'IpDiscovery': 'ipv4'|'ipv6',
        'TransitEncryptionMode': 'preferred'|'required'
    }
}

Response Structure

  • (dict) --

    • CacheCluster (dict) --

      Contains all of the attributes of a specific cluster.

      • CacheClusterId (string) --

        The user-supplied identifier of the cluster. This identifier is a unique key that identifies a cluster.

      • ConfigurationEndpoint (dict) --

        Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it.

        Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

        • Address (string) --

          The DNS hostname of the cache node.

        • Port (integer) --

          The port number that the cache engine is listening on.

      • ClientDownloadLandingPage (string) --

        The URL of the web page where you can download the latest ElastiCache client library.

      • CacheNodeType (string) --

        The name of the compute and memory capacity node type for the cluster.

        The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

        • General purpose:

          • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

        • Compute optimized:

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

        • Memory optimized:

          • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

        Additional node type info

        • All current generation instance types are created in Amazon VPC by default.

        • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

        • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

        • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

      • Engine (string) --

        The name of the cache engine ( memcached or redis) to be used for this cluster.

      • EngineVersion (string) --

        The version of the cache engine that is used in this cluster.

      • CacheClusterStatus (string) --

        The current state of this cluster, one of the following values: available, creating, deleted, deleting, incompatible-network, modifying, rebooting cluster nodes, restore-failed, or snapshotting.

      • NumCacheNodes (integer) --

        The number of cache nodes in the cluster.

        For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

      • PreferredAvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located or "Multiple" if the cache nodes are located in different Availability Zones.

      • PreferredOutpostArn (string) --

        The outpost ARN in which the cache cluster is created.

      • CacheClusterCreateTime (datetime) --

        The date and time when the cluster was created.

      • PreferredMaintenanceWindow (string) --

        Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

        Valid values for ddd are:

        • sun

        • mon

        • tue

        • wed

        • thu

        • fri

        • sat

        Example: sun:23:00-mon:01:30

      • PendingModifiedValues (dict) --

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

        • NumCacheNodes (integer) --

          The new number of cache nodes for the cluster.

          For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

        • CacheNodeIdsToRemove (list) --

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

          • (string) --

        • EngineVersion (string) --

          The new cache engine version that the cluster runs.

        • CacheNodeType (string) --

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

        • AuthTokenStatus (string) --

          The auth token status

        • LogDeliveryConfigurations (list) --

          The log delivery configurations being modified

          • (dict) --

            The log delivery configurations being modified

            • LogType (string) --

              Refers to slow-log or engine-log..

            • DestinationType (string) --

              Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

            • DestinationDetails (dict) --

              Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

              • CloudWatchLogsDetails (dict) --

                The configuration details of the CloudWatch Logs destination.

                • LogGroup (string) --

                  The name of the CloudWatch Logs log group.

              • KinesisFirehoseDetails (dict) --

                The configuration details of the Kinesis Data Firehose destination.

                • DeliveryStream (string) --

                  The name of the Kinesis Data Firehose delivery stream.

            • LogFormat (string) --

              Returns the log format, either JSON or TEXT

        • TransitEncryptionEnabled (boolean) --

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

        • TransitEncryptionMode (string) --

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

        • ScaleConfig (dict) --

          The scaling configuration changes that are pending for the Memcached cluster.

          • ScalePercentage (integer) --

            The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

          • ScaleIntervalMinutes (integer) --

            The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

      • NotificationConfiguration (dict) --

        Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).

        • TopicArn (string) --

          The Amazon Resource Name (ARN) that identifies the topic.

        • TopicStatus (string) --

          The current state of the topic.

      • CacheSecurityGroups (list) --

        A list of cache security group elements, composed of name and status sub-elements.

        • (dict) --

          Represents a cluster's status within a particular cache security group.

          • CacheSecurityGroupName (string) --

            The name of the cache security group.

          • Status (string) --

            The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • CacheParameterGroup (dict) --

        Status of the cache parameter group.

        • CacheParameterGroupName (string) --

          The name of the cache parameter group.

        • ParameterApplyStatus (string) --

          The status of parameter updates.

        • CacheNodeIdsToReboot (list) --

          A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

          • (string) --

      • CacheSubnetGroupName (string) --

        The name of the cache subnet group associated with the cluster.

      • CacheNodes (list) --

        A list of cache nodes that are members of the cluster.

        • (dict) --

          Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached, Valkey or Redis OSS.

          The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

          • General purpose:

            • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

          • Compute optimized:

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

          • Memory optimized:

            • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

          Additional node type info

          • All current generation instance types are created in Amazon VPC by default.

          • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

          • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

          • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

          • CacheNodeId (string) --

            The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's Amazon account.

          • CacheNodeStatus (string) --

            The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.

          • CacheNodeCreateTime (datetime) --

            The date and time when the cache node was created.

          • Endpoint (dict) --

            The hostname for connecting to this cache node.

            • Address (string) --

              The DNS hostname of the cache node.

            • Port (integer) --

              The port number that the cache engine is listening on.

          • ParameterGroupStatus (string) --

            The status of the parameter group applied to this cache node.

          • SourceCacheNodeId (string) --

            The ID of the primary node to which this read replica node is synchronized. If this field is empty, this node is not associated with a primary cluster.

          • CustomerAvailabilityZone (string) --

            The Availability Zone where this node was created and now resides.

          • CustomerOutpostArn (string) --

            The customer outpost ARN of the cache node.

      • AutoMinorVersionUpgrade (boolean) --

        If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

      • SecurityGroups (list) --

        A list of VPC Security Groups associated with the cluster.

        • (dict) --

          Represents a single cache security group and its status.

          • SecurityGroupId (string) --

            The identifier of the cache security group.

          • Status (string) --

            The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • ReplicationGroupId (string) --

        The replication group to which this cluster belongs. If this field is empty, the cluster is not associated with any replication group.

      • SnapshotRetentionLimit (integer) --

        The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

      • SnapshotWindow (string) --

        The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

        Example: 05:00-09:00

      • AuthTokenEnabled (boolean) --

        A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands.

        Default: false

      • AuthTokenLastModifiedDate (datetime) --

        The date the auth token was last modified

      • TransitEncryptionEnabled (boolean) --

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

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • AtRestEncryptionEnabled (boolean) --

        A flag that enables encryption at-rest when set to true.

        You cannot modify the value of AtRestEncryptionEnabled after the cluster is created. To enable at-rest encryption on a cluster you must set AtRestEncryptionEnabled to true when you create a cluster.

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • ARN (string) --

        The ARN (Amazon Resource Name) of the cache cluster.

      • ReplicationGroupLogDeliveryEnabled (boolean) --

        A boolean value indicating whether log delivery is enabled for the replication group.

      • LogDeliveryConfigurations (list) --

        Returns the destination, format and type of the logs.

        • (dict) --

          Returns the destination, format and type of the logs.

          • LogType (string) --

            Refers to slow-log or engine-log.

          • DestinationType (string) --

            Returns the destination type, either cloudwatch-logs or kinesis-firehose.

          • DestinationDetails (dict) --

            Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

            • CloudWatchLogsDetails (dict) --

              The configuration details of the CloudWatch Logs destination.

              • LogGroup (string) --

                The name of the CloudWatch Logs log group.

            • KinesisFirehoseDetails (dict) --

              The configuration details of the Kinesis Data Firehose destination.

              • DeliveryStream (string) --

                The name of the Kinesis Data Firehose delivery stream.

          • LogFormat (string) --

            Returns the log format, either JSON or TEXT.

          • Status (string) --

            Returns the log delivery configuration status. Values are one of enabling | disabling | modifying | active | error

          • Message (string) --

            Returns an error message for the log delivery configuration.

      • NetworkType (string) --

        Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • IpDiscovery (string) --

        The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • TransitEncryptionMode (string) --

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

DeleteCacheCluster (updated) Link ¶
Changes (response)
{'CacheCluster': {'PendingModifiedValues': {'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                                                            'ScalePercentage': 'integer'}}}}

Deletes a previously provisioned cluster. DeleteCacheCluster deletes all associated cache nodes, node endpoints and the cluster itself. When you receive a successful response from this operation, Amazon ElastiCache immediately begins deleting the cluster; you cannot cancel or revert this operation.

This operation is not valid for:

  • Valkey or Redis OSS (cluster mode enabled) clusters

  • Valkey or Redis OSS (cluster mode disabled) clusters

  • A cluster that is the last read replica of a replication group

  • A cluster that is the primary node of a replication group

  • A node group (shard) that has Multi-AZ mode enabled

  • A cluster from a Valkey or Redis OSS (cluster mode enabled) replication group

  • A cluster that is not in the available state

See also: AWS API Documentation

Request Syntax

client.delete_cache_cluster(
    CacheClusterId='string',
    FinalSnapshotIdentifier='string'
)
type CacheClusterId:

string

param CacheClusterId:

[REQUIRED]

The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.

type FinalSnapshotIdentifier:

string

param FinalSnapshotIdentifier:

The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. ElastiCache creates the snapshot, and then deletes the cluster immediately afterward.

rtype:

dict

returns:

Response Syntax

{
    'CacheCluster': {
        'CacheClusterId': 'string',
        'ConfigurationEndpoint': {
            'Address': 'string',
            'Port': 123
        },
        'ClientDownloadLandingPage': 'string',
        'CacheNodeType': 'string',
        'Engine': 'string',
        'EngineVersion': 'string',
        'CacheClusterStatus': 'string',
        'NumCacheNodes': 123,
        'PreferredAvailabilityZone': 'string',
        'PreferredOutpostArn': 'string',
        'CacheClusterCreateTime': datetime(2015, 1, 1),
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'NumCacheNodes': 123,
            'CacheNodeIdsToRemove': [
                'string',
            ],
            'EngineVersion': 'string',
            'CacheNodeType': 'string',
            'AuthTokenStatus': 'SETTING'|'ROTATING',
            'LogDeliveryConfigurations': [
                {
                    'LogType': 'slow-log'|'engine-log',
                    'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                    'DestinationDetails': {
                        'CloudWatchLogsDetails': {
                            'LogGroup': 'string'
                        },
                        'KinesisFirehoseDetails': {
                            'DeliveryStream': 'string'
                        }
                    },
                    'LogFormat': 'text'|'json'
                },
            ],
            'TransitEncryptionEnabled': True|False,
            'TransitEncryptionMode': 'preferred'|'required',
            'ScaleConfig': {
                'ScalePercentage': 123,
                'ScaleIntervalMinutes': 123
            }
        },
        'NotificationConfiguration': {
            'TopicArn': 'string',
            'TopicStatus': 'string'
        },
        'CacheSecurityGroups': [
            {
                'CacheSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'CacheParameterGroup': {
            'CacheParameterGroupName': 'string',
            'ParameterApplyStatus': 'string',
            'CacheNodeIdsToReboot': [
                'string',
            ]
        },
        'CacheSubnetGroupName': 'string',
        'CacheNodes': [
            {
                'CacheNodeId': 'string',
                'CacheNodeStatus': 'string',
                'CacheNodeCreateTime': datetime(2015, 1, 1),
                'Endpoint': {
                    'Address': 'string',
                    'Port': 123
                },
                'ParameterGroupStatus': 'string',
                'SourceCacheNodeId': 'string',
                'CustomerAvailabilityZone': 'string',
                'CustomerOutpostArn': 'string'
            },
        ],
        'AutoMinorVersionUpgrade': True|False,
        'SecurityGroups': [
            {
                'SecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ReplicationGroupId': 'string',
        'SnapshotRetentionLimit': 123,
        'SnapshotWindow': 'string',
        'AuthTokenEnabled': True|False,
        'AuthTokenLastModifiedDate': datetime(2015, 1, 1),
        'TransitEncryptionEnabled': True|False,
        'AtRestEncryptionEnabled': True|False,
        'ARN': 'string',
        'ReplicationGroupLogDeliveryEnabled': True|False,
        'LogDeliveryConfigurations': [
            {
                'LogType': 'slow-log'|'engine-log',
                'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                'DestinationDetails': {
                    'CloudWatchLogsDetails': {
                        'LogGroup': 'string'
                    },
                    'KinesisFirehoseDetails': {
                        'DeliveryStream': 'string'
                    }
                },
                'LogFormat': 'text'|'json',
                'Status': 'active'|'enabling'|'modifying'|'disabling'|'error',
                'Message': 'string'
            },
        ],
        'NetworkType': 'ipv4'|'ipv6'|'dual_stack',
        'IpDiscovery': 'ipv4'|'ipv6',
        'TransitEncryptionMode': 'preferred'|'required'
    }
}

Response Structure

  • (dict) --

    • CacheCluster (dict) --

      Contains all of the attributes of a specific cluster.

      • CacheClusterId (string) --

        The user-supplied identifier of the cluster. This identifier is a unique key that identifies a cluster.

      • ConfigurationEndpoint (dict) --

        Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it.

        Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

        • Address (string) --

          The DNS hostname of the cache node.

        • Port (integer) --

          The port number that the cache engine is listening on.

      • ClientDownloadLandingPage (string) --

        The URL of the web page where you can download the latest ElastiCache client library.

      • CacheNodeType (string) --

        The name of the compute and memory capacity node type for the cluster.

        The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

        • General purpose:

          • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

        • Compute optimized:

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

        • Memory optimized:

          • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

        Additional node type info

        • All current generation instance types are created in Amazon VPC by default.

        • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

        • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

        • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

      • Engine (string) --

        The name of the cache engine ( memcached or redis) to be used for this cluster.

      • EngineVersion (string) --

        The version of the cache engine that is used in this cluster.

      • CacheClusterStatus (string) --

        The current state of this cluster, one of the following values: available, creating, deleted, deleting, incompatible-network, modifying, rebooting cluster nodes, restore-failed, or snapshotting.

      • NumCacheNodes (integer) --

        The number of cache nodes in the cluster.

        For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

      • PreferredAvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located or "Multiple" if the cache nodes are located in different Availability Zones.

      • PreferredOutpostArn (string) --

        The outpost ARN in which the cache cluster is created.

      • CacheClusterCreateTime (datetime) --

        The date and time when the cluster was created.

      • PreferredMaintenanceWindow (string) --

        Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

        Valid values for ddd are:

        • sun

        • mon

        • tue

        • wed

        • thu

        • fri

        • sat

        Example: sun:23:00-mon:01:30

      • PendingModifiedValues (dict) --

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

        • NumCacheNodes (integer) --

          The new number of cache nodes for the cluster.

          For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

        • CacheNodeIdsToRemove (list) --

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

          • (string) --

        • EngineVersion (string) --

          The new cache engine version that the cluster runs.

        • CacheNodeType (string) --

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

        • AuthTokenStatus (string) --

          The auth token status

        • LogDeliveryConfigurations (list) --

          The log delivery configurations being modified

          • (dict) --

            The log delivery configurations being modified

            • LogType (string) --

              Refers to slow-log or engine-log..

            • DestinationType (string) --

              Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

            • DestinationDetails (dict) --

              Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

              • CloudWatchLogsDetails (dict) --

                The configuration details of the CloudWatch Logs destination.

                • LogGroup (string) --

                  The name of the CloudWatch Logs log group.

              • KinesisFirehoseDetails (dict) --

                The configuration details of the Kinesis Data Firehose destination.

                • DeliveryStream (string) --

                  The name of the Kinesis Data Firehose delivery stream.

            • LogFormat (string) --

              Returns the log format, either JSON or TEXT

        • TransitEncryptionEnabled (boolean) --

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

        • TransitEncryptionMode (string) --

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

        • ScaleConfig (dict) --

          The scaling configuration changes that are pending for the Memcached cluster.

          • ScalePercentage (integer) --

            The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

          • ScaleIntervalMinutes (integer) --

            The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

      • NotificationConfiguration (dict) --

        Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).

        • TopicArn (string) --

          The Amazon Resource Name (ARN) that identifies the topic.

        • TopicStatus (string) --

          The current state of the topic.

      • CacheSecurityGroups (list) --

        A list of cache security group elements, composed of name and status sub-elements.

        • (dict) --

          Represents a cluster's status within a particular cache security group.

          • CacheSecurityGroupName (string) --

            The name of the cache security group.

          • Status (string) --

            The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • CacheParameterGroup (dict) --

        Status of the cache parameter group.

        • CacheParameterGroupName (string) --

          The name of the cache parameter group.

        • ParameterApplyStatus (string) --

          The status of parameter updates.

        • CacheNodeIdsToReboot (list) --

          A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

          • (string) --

      • CacheSubnetGroupName (string) --

        The name of the cache subnet group associated with the cluster.

      • CacheNodes (list) --

        A list of cache nodes that are members of the cluster.

        • (dict) --

          Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached, Valkey or Redis OSS.

          The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

          • General purpose:

            • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

          • Compute optimized:

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

          • Memory optimized:

            • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

          Additional node type info

          • All current generation instance types are created in Amazon VPC by default.

          • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

          • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

          • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

          • CacheNodeId (string) --

            The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's Amazon account.

          • CacheNodeStatus (string) --

            The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.

          • CacheNodeCreateTime (datetime) --

            The date and time when the cache node was created.

          • Endpoint (dict) --

            The hostname for connecting to this cache node.

            • Address (string) --

              The DNS hostname of the cache node.

            • Port (integer) --

              The port number that the cache engine is listening on.

          • ParameterGroupStatus (string) --

            The status of the parameter group applied to this cache node.

          • SourceCacheNodeId (string) --

            The ID of the primary node to which this read replica node is synchronized. If this field is empty, this node is not associated with a primary cluster.

          • CustomerAvailabilityZone (string) --

            The Availability Zone where this node was created and now resides.

          • CustomerOutpostArn (string) --

            The customer outpost ARN of the cache node.

      • AutoMinorVersionUpgrade (boolean) --

        If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

      • SecurityGroups (list) --

        A list of VPC Security Groups associated with the cluster.

        • (dict) --

          Represents a single cache security group and its status.

          • SecurityGroupId (string) --

            The identifier of the cache security group.

          • Status (string) --

            The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • ReplicationGroupId (string) --

        The replication group to which this cluster belongs. If this field is empty, the cluster is not associated with any replication group.

      • SnapshotRetentionLimit (integer) --

        The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

      • SnapshotWindow (string) --

        The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

        Example: 05:00-09:00

      • AuthTokenEnabled (boolean) --

        A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands.

        Default: false

      • AuthTokenLastModifiedDate (datetime) --

        The date the auth token was last modified

      • TransitEncryptionEnabled (boolean) --

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

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • AtRestEncryptionEnabled (boolean) --

        A flag that enables encryption at-rest when set to true.

        You cannot modify the value of AtRestEncryptionEnabled after the cluster is created. To enable at-rest encryption on a cluster you must set AtRestEncryptionEnabled to true when you create a cluster.

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • ARN (string) --

        The ARN (Amazon Resource Name) of the cache cluster.

      • ReplicationGroupLogDeliveryEnabled (boolean) --

        A boolean value indicating whether log delivery is enabled for the replication group.

      • LogDeliveryConfigurations (list) --

        Returns the destination, format and type of the logs.

        • (dict) --

          Returns the destination, format and type of the logs.

          • LogType (string) --

            Refers to slow-log or engine-log.

          • DestinationType (string) --

            Returns the destination type, either cloudwatch-logs or kinesis-firehose.

          • DestinationDetails (dict) --

            Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

            • CloudWatchLogsDetails (dict) --

              The configuration details of the CloudWatch Logs destination.

              • LogGroup (string) --

                The name of the CloudWatch Logs log group.

            • KinesisFirehoseDetails (dict) --

              The configuration details of the Kinesis Data Firehose destination.

              • DeliveryStream (string) --

                The name of the Kinesis Data Firehose delivery stream.

          • LogFormat (string) --

            Returns the log format, either JSON or TEXT.

          • Status (string) --

            Returns the log delivery configuration status. Values are one of enabling | disabling | modifying | active | error

          • Message (string) --

            Returns an error message for the log delivery configuration.

      • NetworkType (string) --

        Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • IpDiscovery (string) --

        The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • TransitEncryptionMode (string) --

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

DescribeCacheClusters (updated) Link ¶
Changes (response)
{'CacheClusters': {'PendingModifiedValues': {'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                                                             'ScalePercentage': 'integer'}}}}

Returns information about all provisioned clusters if no cluster identifier is specified, or about a specific cache cluster if a cluster identifier is supplied.

By default, abbreviated information about the clusters is returned. You can use the optional ShowCacheNodeInfo flag to retrieve detailed information about the cache nodes associated with the clusters. These details include the DNS address and port for the cache node endpoint.

If the cluster is in the creating state, only cluster-level information is displayed until all of the nodes are successfully provisioned.

If the cluster is in the deleting state, only cluster-level information is displayed.

If cache nodes are currently being added to the cluster, node endpoint information and creation time for the additional nodes are not displayed until they are completely provisioned. When the cluster state is available, the cluster is ready for use.

If cache nodes are currently being removed from the cluster, no endpoint information for the removed nodes is displayed.

See also: AWS API Documentation

Request Syntax

client.describe_cache_clusters(
    CacheClusterId='string',
    MaxRecords=123,
    Marker='string',
    ShowCacheNodeInfo=True|False,
    ShowCacheClustersNotInReplicationGroups=True|False
)
type CacheClusterId:

string

param CacheClusterId:

The user-supplied cluster identifier. If this parameter is specified, only information about that specific cluster is returned. This parameter isn't case sensitive.

type MaxRecords:

integer

param MaxRecords:

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.

Default: 100

Constraints: minimum 20; maximum 100.

type Marker:

string

param Marker:

An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

type ShowCacheNodeInfo:

boolean

param ShowCacheNodeInfo:

An optional flag that can be included in the DescribeCacheCluster request to retrieve information about the individual cache nodes.

type ShowCacheClustersNotInReplicationGroups:

boolean

param ShowCacheClustersNotInReplicationGroups:

An optional flag that can be included in the DescribeCacheCluster request to show only nodes (API/CLI: clusters) that are not members of a replication group. In practice, this means Memcached and single node Valkey or Redis OSS clusters.

rtype:

dict

returns:

Response Syntax

{
    'Marker': 'string',
    'CacheClusters': [
        {
            'CacheClusterId': 'string',
            'ConfigurationEndpoint': {
                'Address': 'string',
                'Port': 123
            },
            'ClientDownloadLandingPage': 'string',
            'CacheNodeType': 'string',
            'Engine': 'string',
            'EngineVersion': 'string',
            'CacheClusterStatus': 'string',
            'NumCacheNodes': 123,
            'PreferredAvailabilityZone': 'string',
            'PreferredOutpostArn': 'string',
            'CacheClusterCreateTime': datetime(2015, 1, 1),
            'PreferredMaintenanceWindow': 'string',
            'PendingModifiedValues': {
                'NumCacheNodes': 123,
                'CacheNodeIdsToRemove': [
                    'string',
                ],
                'EngineVersion': 'string',
                'CacheNodeType': 'string',
                'AuthTokenStatus': 'SETTING'|'ROTATING',
                'LogDeliveryConfigurations': [
                    {
                        'LogType': 'slow-log'|'engine-log',
                        'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                        'DestinationDetails': {
                            'CloudWatchLogsDetails': {
                                'LogGroup': 'string'
                            },
                            'KinesisFirehoseDetails': {
                                'DeliveryStream': 'string'
                            }
                        },
                        'LogFormat': 'text'|'json'
                    },
                ],
                'TransitEncryptionEnabled': True|False,
                'TransitEncryptionMode': 'preferred'|'required',
                'ScaleConfig': {
                    'ScalePercentage': 123,
                    'ScaleIntervalMinutes': 123
                }
            },
            'NotificationConfiguration': {
                'TopicArn': 'string',
                'TopicStatus': 'string'
            },
            'CacheSecurityGroups': [
                {
                    'CacheSecurityGroupName': 'string',
                    'Status': 'string'
                },
            ],
            'CacheParameterGroup': {
                'CacheParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'CacheNodeIdsToReboot': [
                    'string',
                ]
            },
            'CacheSubnetGroupName': 'string',
            'CacheNodes': [
                {
                    'CacheNodeId': 'string',
                    'CacheNodeStatus': 'string',
                    'CacheNodeCreateTime': datetime(2015, 1, 1),
                    'Endpoint': {
                        'Address': 'string',
                        'Port': 123
                    },
                    'ParameterGroupStatus': 'string',
                    'SourceCacheNodeId': 'string',
                    'CustomerAvailabilityZone': 'string',
                    'CustomerOutpostArn': 'string'
                },
            ],
            'AutoMinorVersionUpgrade': True|False,
            'SecurityGroups': [
                {
                    'SecurityGroupId': 'string',
                    'Status': 'string'
                },
            ],
            'ReplicationGroupId': 'string',
            'SnapshotRetentionLimit': 123,
            'SnapshotWindow': 'string',
            'AuthTokenEnabled': True|False,
            'AuthTokenLastModifiedDate': datetime(2015, 1, 1),
            'TransitEncryptionEnabled': True|False,
            'AtRestEncryptionEnabled': True|False,
            'ARN': 'string',
            'ReplicationGroupLogDeliveryEnabled': True|False,
            'LogDeliveryConfigurations': [
                {
                    'LogType': 'slow-log'|'engine-log',
                    'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                    'DestinationDetails': {
                        'CloudWatchLogsDetails': {
                            'LogGroup': 'string'
                        },
                        'KinesisFirehoseDetails': {
                            'DeliveryStream': 'string'
                        }
                    },
                    'LogFormat': 'text'|'json',
                    'Status': 'active'|'enabling'|'modifying'|'disabling'|'error',
                    'Message': 'string'
                },
            ],
            'NetworkType': 'ipv4'|'ipv6'|'dual_stack',
            'IpDiscovery': 'ipv4'|'ipv6',
            'TransitEncryptionMode': 'preferred'|'required'
        },
    ]
}

Response Structure

  • (dict) --

    Represents the output of a DescribeCacheClusters operation.

    • Marker (string) --

      Provides an identifier to allow retrieval of paginated results.

    • CacheClusters (list) --

      A list of clusters. Each item in the list contains detailed information about one cluster.

      • (dict) --

        Contains all of the attributes of a specific cluster.

        • CacheClusterId (string) --

          The user-supplied identifier of the cluster. This identifier is a unique key that identifies a cluster.

        • ConfigurationEndpoint (dict) --

          Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it.

          Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

          • Address (string) --

            The DNS hostname of the cache node.

          • Port (integer) --

            The port number that the cache engine is listening on.

        • ClientDownloadLandingPage (string) --

          The URL of the web page where you can download the latest ElastiCache client library.

        • CacheNodeType (string) --

          The name of the compute and memory capacity node type for the cluster.

          The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

          • General purpose:

            • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

          • Compute optimized:

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

          • Memory optimized:

            • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

          Additional node type info

          • All current generation instance types are created in Amazon VPC by default.

          • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

          • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

          • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

        • Engine (string) --

          The name of the cache engine ( memcached or redis) to be used for this cluster.

        • EngineVersion (string) --

          The version of the cache engine that is used in this cluster.

        • CacheClusterStatus (string) --

          The current state of this cluster, one of the following values: available, creating, deleted, deleting, incompatible-network, modifying, rebooting cluster nodes, restore-failed, or snapshotting.

        • NumCacheNodes (integer) --

          The number of cache nodes in the cluster.

          For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

        • PreferredAvailabilityZone (string) --

          The name of the Availability Zone in which the cluster is located or "Multiple" if the cache nodes are located in different Availability Zones.

        • PreferredOutpostArn (string) --

          The outpost ARN in which the cache cluster is created.

        • CacheClusterCreateTime (datetime) --

          The date and time when the cluster was created.

        • PreferredMaintenanceWindow (string) --

          Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

          Valid values for ddd are:

          • sun

          • mon

          • tue

          • wed

          • thu

          • fri

          • sat

          Example: sun:23:00-mon:01:30

        • PendingModifiedValues (dict) --

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

          • NumCacheNodes (integer) --

            The new number of cache nodes for the cluster.

            For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

          • CacheNodeIdsToRemove (list) --

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

            • (string) --

          • EngineVersion (string) --

            The new cache engine version that the cluster runs.

          • CacheNodeType (string) --

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

          • AuthTokenStatus (string) --

            The auth token status

          • LogDeliveryConfigurations (list) --

            The log delivery configurations being modified

            • (dict) --

              The log delivery configurations being modified

              • LogType (string) --

                Refers to slow-log or engine-log..

              • DestinationType (string) --

                Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

              • DestinationDetails (dict) --

                Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

                • CloudWatchLogsDetails (dict) --

                  The configuration details of the CloudWatch Logs destination.

                  • LogGroup (string) --

                    The name of the CloudWatch Logs log group.

                • KinesisFirehoseDetails (dict) --

                  The configuration details of the Kinesis Data Firehose destination.

                  • DeliveryStream (string) --

                    The name of the Kinesis Data Firehose delivery stream.

              • LogFormat (string) --

                Returns the log format, either JSON or TEXT

          • TransitEncryptionEnabled (boolean) --

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

          • TransitEncryptionMode (string) --

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

          • ScaleConfig (dict) --

            The scaling configuration changes that are pending for the Memcached cluster.

            • ScalePercentage (integer) --

              The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

            • ScaleIntervalMinutes (integer) --

              The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

        • NotificationConfiguration (dict) --

          Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).

          • TopicArn (string) --

            The Amazon Resource Name (ARN) that identifies the topic.

          • TopicStatus (string) --

            The current state of the topic.

        • CacheSecurityGroups (list) --

          A list of cache security group elements, composed of name and status sub-elements.

          • (dict) --

            Represents a cluster's status within a particular cache security group.

            • CacheSecurityGroupName (string) --

              The name of the cache security group.

            • Status (string) --

              The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

        • CacheParameterGroup (dict) --

          Status of the cache parameter group.

          • CacheParameterGroupName (string) --

            The name of the cache parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • CacheNodeIdsToReboot (list) --

            A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

            • (string) --

        • CacheSubnetGroupName (string) --

          The name of the cache subnet group associated with the cluster.

        • CacheNodes (list) --

          A list of cache nodes that are members of the cluster.

          • (dict) --

            Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached, Valkey or Redis OSS.

            The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

            • General purpose:

              • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

              • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

            • Compute optimized:

              • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

            • Memory optimized:

              • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

              • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

            Additional node type info

            • All current generation instance types are created in Amazon VPC by default.

            • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

            • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

            • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

            • CacheNodeId (string) --

              The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's Amazon account.

            • CacheNodeStatus (string) --

              The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.

            • CacheNodeCreateTime (datetime) --

              The date and time when the cache node was created.

            • Endpoint (dict) --

              The hostname for connecting to this cache node.

              • Address (string) --

                The DNS hostname of the cache node.

              • Port (integer) --

                The port number that the cache engine is listening on.

            • ParameterGroupStatus (string) --

              The status of the parameter group applied to this cache node.

            • SourceCacheNodeId (string) --

              The ID of the primary node to which this read replica node is synchronized. If this field is empty, this node is not associated with a primary cluster.

            • CustomerAvailabilityZone (string) --

              The Availability Zone where this node was created and now resides.

            • CustomerOutpostArn (string) --

              The customer outpost ARN of the cache node.

        • AutoMinorVersionUpgrade (boolean) --

          If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

        • SecurityGroups (list) --

          A list of VPC Security Groups associated with the cluster.

          • (dict) --

            Represents a single cache security group and its status.

            • SecurityGroupId (string) --

              The identifier of the cache security group.

            • Status (string) --

              The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

        • ReplicationGroupId (string) --

          The replication group to which this cluster belongs. If this field is empty, the cluster is not associated with any replication group.

        • SnapshotRetentionLimit (integer) --

          The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

        • SnapshotWindow (string) --

          The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

          Example: 05:00-09:00

        • AuthTokenEnabled (boolean) --

          A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands.

          Default: false

        • AuthTokenLastModifiedDate (datetime) --

          The date the auth token was last modified

        • TransitEncryptionEnabled (boolean) --

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

          Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

          Default: false

        • AtRestEncryptionEnabled (boolean) --

          A flag that enables encryption at-rest when set to true.

          You cannot modify the value of AtRestEncryptionEnabled after the cluster is created. To enable at-rest encryption on a cluster you must set AtRestEncryptionEnabled to true when you create a cluster.

          Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

          Default: false

        • ARN (string) --

          The ARN (Amazon Resource Name) of the cache cluster.

        • ReplicationGroupLogDeliveryEnabled (boolean) --

          A boolean value indicating whether log delivery is enabled for the replication group.

        • LogDeliveryConfigurations (list) --

          Returns the destination, format and type of the logs.

          • (dict) --

            Returns the destination, format and type of the logs.

            • LogType (string) --

              Refers to slow-log or engine-log.

            • DestinationType (string) --

              Returns the destination type, either cloudwatch-logs or kinesis-firehose.

            • DestinationDetails (dict) --

              Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

              • CloudWatchLogsDetails (dict) --

                The configuration details of the CloudWatch Logs destination.

                • LogGroup (string) --

                  The name of the CloudWatch Logs log group.

              • KinesisFirehoseDetails (dict) --

                The configuration details of the Kinesis Data Firehose destination.

                • DeliveryStream (string) --

                  The name of the Kinesis Data Firehose delivery stream.

            • LogFormat (string) --

              Returns the log format, either JSON or TEXT.

            • Status (string) --

              Returns the log delivery configuration status. Values are one of enabling | disabling | modifying | active | error

            • Message (string) --

              Returns an error message for the log delivery configuration.

        • NetworkType (string) --

          Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

        • IpDiscovery (string) --

          The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

        • TransitEncryptionMode (string) --

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

ModifyCacheCluster (updated) Link ¶
Changes (request, response)
Request
{'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                 'ScalePercentage': 'integer'}}
Response
{'CacheCluster': {'PendingModifiedValues': {'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                                                            'ScalePercentage': 'integer'}}}}

Modifies the settings for a cluster. You can use this operation to change one or more cluster configuration parameters by specifying the parameters and the new values.

See also: AWS API Documentation

Request Syntax

client.modify_cache_cluster(
    CacheClusterId='string',
    NumCacheNodes=123,
    CacheNodeIdsToRemove=[
        'string',
    ],
    AZMode='single-az'|'cross-az',
    NewAvailabilityZones=[
        'string',
    ],
    CacheSecurityGroupNames=[
        'string',
    ],
    SecurityGroupIds=[
        'string',
    ],
    PreferredMaintenanceWindow='string',
    NotificationTopicArn='string',
    CacheParameterGroupName='string',
    NotificationTopicStatus='string',
    ApplyImmediately=True|False,
    Engine='string',
    EngineVersion='string',
    AutoMinorVersionUpgrade=True|False,
    SnapshotRetentionLimit=123,
    SnapshotWindow='string',
    CacheNodeType='string',
    AuthToken='string',
    AuthTokenUpdateStrategy='SET'|'ROTATE'|'DELETE',
    LogDeliveryConfigurations=[
        {
            'LogType': 'slow-log'|'engine-log',
            'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
            'DestinationDetails': {
                'CloudWatchLogsDetails': {
                    'LogGroup': 'string'
                },
                'KinesisFirehoseDetails': {
                    'DeliveryStream': 'string'
                }
            },
            'LogFormat': 'text'|'json',
            'Enabled': True|False
        },
    ],
    IpDiscovery='ipv4'|'ipv6',
    ScaleConfig={
        'ScalePercentage': 123,
        'ScaleIntervalMinutes': 123
    }
)
type CacheClusterId:

string

param CacheClusterId:

[REQUIRED]

The cluster identifier. This value is stored as a lowercase string.

type NumCacheNodes:

integer

param NumCacheNodes:

The number of cache nodes that the cluster should have. If the value for NumCacheNodes is greater than the sum of the number of current cache nodes and the number of cache nodes pending creation (which may be zero), more nodes are added. If the value is less than the number of existing cache nodes, nodes are removed. If the value is equal to the number of current cache nodes, any pending add or remove requests are canceled.

If you are removing cache nodes, you must use the CacheNodeIdsToRemove parameter to provide the IDs of the specific cache nodes to remove.

For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

type CacheNodeIdsToRemove:

list

param CacheNodeIdsToRemove:

A list of cache node IDs to be removed. A node ID is a numeric identifier (0001, 0002, etc.). This parameter is only valid when NumCacheNodes is less than the existing number of cache nodes. The number of cache node IDs supplied in this parameter must match the difference between the existing number of cache nodes in the cluster or pending cache nodes, whichever is greater, and the value of NumCacheNodes in the request.

For example: If you have 3 active cache nodes, 7 pending cache nodes, and the number of cache nodes in this ModifyCacheCluster call is 5, you must list 2 (7 - 5) cache node IDs to remove.

  • (string) --

type AZMode:

string

param AZMode:

Specifies whether the new nodes in this Memcached cluster are all created in a single Availability Zone or created across multiple Availability Zones.

Valid values: single-az | cross-az.

This option is only supported for Memcached clusters.

type NewAvailabilityZones:

list

param NewAvailabilityZones:

The list of Availability Zones where the new Memcached cache nodes are created.

This parameter is only valid when NumCacheNodes in the request is greater than the sum of the number of active cache nodes and the number of cache nodes pending creation (which may be zero). The number of Availability Zones supplied in this list must match the cache nodes being added in this request.

Scenarios:

  • Scenario 1: You have 3 active nodes and wish to add 2 nodes. Specify NumCacheNodes=5 (3 + 2) and optionally specify two Availability Zones for the two new nodes.

  • Scenario 2: You have 3 active nodes and 2 nodes pending creation (from the scenario 1 call) and want to add 1 more node. Specify NumCacheNodes=6 ((3 + 2) + 1) and optionally specify an Availability Zone for the new node.

  • Scenario 3: You want to cancel all pending operations. Specify NumCacheNodes=3 to cancel all pending operations.

The Availability Zone placement of nodes pending creation cannot be modified. If you wish to cancel any nodes pending creation, add 0 nodes by setting NumCacheNodes to the number of current nodes.

If cross-az is specified, existing Memcached nodes remain in their current Availability Zone. Only newly created nodes can be located in different Availability Zones. For guidance on how to move existing Memcached nodes to different Availability Zones, see the Availability Zone Considerations section of Cache Node Considerations for Memcached.

Impact of new add/remove requests upon pending requests

  • Scenario-1

    • Pending Action: Delete

    • New Request: Delete

    • Result: The new delete, pending or immediate, replaces the pending delete.

  • Scenario-2

    • Pending Action: Delete

    • New Request: Create

    • Result: The new create, pending or immediate, replaces the pending delete.

  • Scenario-3

    • Pending Action: Create

    • New Request: Delete

    • Result: The new delete, pending or immediate, replaces the pending create.

  • Scenario-4

    • Pending Action: Create

    • New Request: Create

    • Result: The new create is added to the pending create.

  • (string) --

type CacheSecurityGroupNames:

list

param CacheSecurityGroupNames:

A list of cache security group names to authorize on this cluster. This change is asynchronously applied as soon as possible.

You can use this parameter only with clusters that are created outside of an Amazon Virtual Private Cloud (Amazon VPC).

Constraints: Must contain no more than 255 alphanumeric characters. Must not be "Default".

  • (string) --

type SecurityGroupIds:

list

param SecurityGroupIds:

Specifies the VPC Security Groups associated with the cluster.

This parameter can be used only with clusters that are created in an Amazon Virtual Private Cloud (Amazon VPC).

  • (string) --

type PreferredMaintenanceWindow:

string

param PreferredMaintenanceWindow:

Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

Valid values for ddd are:

  • sun

  • mon

  • tue

  • wed

  • thu

  • fri

  • sat

Example: sun:23:00-mon:01:30

type NotificationTopicArn:

string

param NotificationTopicArn:

The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.

type CacheParameterGroupName:

string

param CacheParameterGroupName:

The name of the cache parameter group to apply to this cluster. This change is asynchronously applied as soon as possible for parameters when the ApplyImmediately parameter is specified as true for this request.

type NotificationTopicStatus:

string

param NotificationTopicStatus:

The status of the Amazon SNS notification topic. Notifications are sent only if the status is active.

Valid values: active | inactive

type ApplyImmediately:

boolean

param ApplyImmediately:

If true, this parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow setting for the cluster.

If false, changes to the cluster are applied on the next maintenance reboot, or the next failure reboot, whichever occurs first.

Valid values: true | false

Default: false

type Engine:

string

param Engine:

The engine type used by the cache cluster. The options are valkey, memcached or redis.

type EngineVersion:

string

param EngineVersion:

The upgraded version of the cache engine to be run on the cache nodes.

Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to use an earlier engine version, you must delete the existing cluster and create it anew with the earlier engine version.

type AutoMinorVersionUpgrade:

boolean

param AutoMinorVersionUpgrade:

If you are running Valkey 7.2 or Redis OSS engine version 6.0 or later, set this parameter to yes to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

type SnapshotRetentionLimit:

integer

param SnapshotRetentionLimit:

The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

type SnapshotWindow:

string

param SnapshotWindow:

The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

type CacheNodeType:

string

param CacheNodeType:

A valid cache node type that you want to scale this cluster up to.

type AuthToken:

string

param AuthToken:

Reserved parameter. The password used to access a password protected server. This parameter must be specified with the auth-token-update parameter. Password constraints:

  • Must be only printable ASCII characters

  • Must be at least 16 characters and no more than 128 characters in length

  • Cannot contain any of the following characters: '/', '"', or '@', '%'

For more information, see AUTH password at AUTH.

type AuthTokenUpdateStrategy:

string

param AuthTokenUpdateStrategy:

Specifies the strategy to use to update the AUTH token. This parameter must be specified with the auth-token parameter. Possible values:

  • ROTATE - default, if no update strategy is provided

  • SET - allowed only after ROTATE

  • DELETE - allowed only when transitioning to RBAC

For more information, see Authenticating Users with AUTH

type LogDeliveryConfigurations:

list

param LogDeliveryConfigurations:

Specifies the destination, format and type of the logs.

  • (dict) --

    Specifies the destination, format and type of the logs.

    • LogType (string) --

      Refers to slow-log or engine-log..

    • DestinationType (string) --

      Specify either cloudwatch-logs or kinesis-firehose as the destination type.

    • DestinationDetails (dict) --

      Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

      • CloudWatchLogsDetails (dict) --

        The configuration details of the CloudWatch Logs destination.

        • LogGroup (string) --

          The name of the CloudWatch Logs log group.

      • KinesisFirehoseDetails (dict) --

        The configuration details of the Kinesis Data Firehose destination.

        • DeliveryStream (string) --

          The name of the Kinesis Data Firehose delivery stream.

    • LogFormat (string) --

      Specifies either JSON or TEXT

    • Enabled (boolean) --

      Specify if log delivery is enabled. Default true.

type IpDiscovery:

string

param IpDiscovery:

The network type you choose when modifying a cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

type ScaleConfig:

dict

param ScaleConfig:

Configures horizontal or vertical scaling for Memcached clusters, specifying the scaling percentage and interval.

  • ScalePercentage (integer) --

    The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

  • ScaleIntervalMinutes (integer) --

    The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

rtype:

dict

returns:

Response Syntax

{
    'CacheCluster': {
        'CacheClusterId': 'string',
        'ConfigurationEndpoint': {
            'Address': 'string',
            'Port': 123
        },
        'ClientDownloadLandingPage': 'string',
        'CacheNodeType': 'string',
        'Engine': 'string',
        'EngineVersion': 'string',
        'CacheClusterStatus': 'string',
        'NumCacheNodes': 123,
        'PreferredAvailabilityZone': 'string',
        'PreferredOutpostArn': 'string',
        'CacheClusterCreateTime': datetime(2015, 1, 1),
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'NumCacheNodes': 123,
            'CacheNodeIdsToRemove': [
                'string',
            ],
            'EngineVersion': 'string',
            'CacheNodeType': 'string',
            'AuthTokenStatus': 'SETTING'|'ROTATING',
            'LogDeliveryConfigurations': [
                {
                    'LogType': 'slow-log'|'engine-log',
                    'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                    'DestinationDetails': {
                        'CloudWatchLogsDetails': {
                            'LogGroup': 'string'
                        },
                        'KinesisFirehoseDetails': {
                            'DeliveryStream': 'string'
                        }
                    },
                    'LogFormat': 'text'|'json'
                },
            ],
            'TransitEncryptionEnabled': True|False,
            'TransitEncryptionMode': 'preferred'|'required',
            'ScaleConfig': {
                'ScalePercentage': 123,
                'ScaleIntervalMinutes': 123
            }
        },
        'NotificationConfiguration': {
            'TopicArn': 'string',
            'TopicStatus': 'string'
        },
        'CacheSecurityGroups': [
            {
                'CacheSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'CacheParameterGroup': {
            'CacheParameterGroupName': 'string',
            'ParameterApplyStatus': 'string',
            'CacheNodeIdsToReboot': [
                'string',
            ]
        },
        'CacheSubnetGroupName': 'string',
        'CacheNodes': [
            {
                'CacheNodeId': 'string',
                'CacheNodeStatus': 'string',
                'CacheNodeCreateTime': datetime(2015, 1, 1),
                'Endpoint': {
                    'Address': 'string',
                    'Port': 123
                },
                'ParameterGroupStatus': 'string',
                'SourceCacheNodeId': 'string',
                'CustomerAvailabilityZone': 'string',
                'CustomerOutpostArn': 'string'
            },
        ],
        'AutoMinorVersionUpgrade': True|False,
        'SecurityGroups': [
            {
                'SecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ReplicationGroupId': 'string',
        'SnapshotRetentionLimit': 123,
        'SnapshotWindow': 'string',
        'AuthTokenEnabled': True|False,
        'AuthTokenLastModifiedDate': datetime(2015, 1, 1),
        'TransitEncryptionEnabled': True|False,
        'AtRestEncryptionEnabled': True|False,
        'ARN': 'string',
        'ReplicationGroupLogDeliveryEnabled': True|False,
        'LogDeliveryConfigurations': [
            {
                'LogType': 'slow-log'|'engine-log',
                'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                'DestinationDetails': {
                    'CloudWatchLogsDetails': {
                        'LogGroup': 'string'
                    },
                    'KinesisFirehoseDetails': {
                        'DeliveryStream': 'string'
                    }
                },
                'LogFormat': 'text'|'json',
                'Status': 'active'|'enabling'|'modifying'|'disabling'|'error',
                'Message': 'string'
            },
        ],
        'NetworkType': 'ipv4'|'ipv6'|'dual_stack',
        'IpDiscovery': 'ipv4'|'ipv6',
        'TransitEncryptionMode': 'preferred'|'required'
    }
}

Response Structure

  • (dict) --

    • CacheCluster (dict) --

      Contains all of the attributes of a specific cluster.

      • CacheClusterId (string) --

        The user-supplied identifier of the cluster. This identifier is a unique key that identifies a cluster.

      • ConfigurationEndpoint (dict) --

        Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it.

        Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

        • Address (string) --

          The DNS hostname of the cache node.

        • Port (integer) --

          The port number that the cache engine is listening on.

      • ClientDownloadLandingPage (string) --

        The URL of the web page where you can download the latest ElastiCache client library.

      • CacheNodeType (string) --

        The name of the compute and memory capacity node type for the cluster.

        The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

        • General purpose:

          • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

        • Compute optimized:

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

        • Memory optimized:

          • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

        Additional node type info

        • All current generation instance types are created in Amazon VPC by default.

        • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

        • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

        • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

      • Engine (string) --

        The name of the cache engine ( memcached or redis) to be used for this cluster.

      • EngineVersion (string) --

        The version of the cache engine that is used in this cluster.

      • CacheClusterStatus (string) --

        The current state of this cluster, one of the following values: available, creating, deleted, deleting, incompatible-network, modifying, rebooting cluster nodes, restore-failed, or snapshotting.

      • NumCacheNodes (integer) --

        The number of cache nodes in the cluster.

        For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

      • PreferredAvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located or "Multiple" if the cache nodes are located in different Availability Zones.

      • PreferredOutpostArn (string) --

        The outpost ARN in which the cache cluster is created.

      • CacheClusterCreateTime (datetime) --

        The date and time when the cluster was created.

      • PreferredMaintenanceWindow (string) --

        Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

        Valid values for ddd are:

        • sun

        • mon

        • tue

        • wed

        • thu

        • fri

        • sat

        Example: sun:23:00-mon:01:30

      • PendingModifiedValues (dict) --

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

        • NumCacheNodes (integer) --

          The new number of cache nodes for the cluster.

          For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

        • CacheNodeIdsToRemove (list) --

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

          • (string) --

        • EngineVersion (string) --

          The new cache engine version that the cluster runs.

        • CacheNodeType (string) --

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

        • AuthTokenStatus (string) --

          The auth token status

        • LogDeliveryConfigurations (list) --

          The log delivery configurations being modified

          • (dict) --

            The log delivery configurations being modified

            • LogType (string) --

              Refers to slow-log or engine-log..

            • DestinationType (string) --

              Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

            • DestinationDetails (dict) --

              Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

              • CloudWatchLogsDetails (dict) --

                The configuration details of the CloudWatch Logs destination.

                • LogGroup (string) --

                  The name of the CloudWatch Logs log group.

              • KinesisFirehoseDetails (dict) --

                The configuration details of the Kinesis Data Firehose destination.

                • DeliveryStream (string) --

                  The name of the Kinesis Data Firehose delivery stream.

            • LogFormat (string) --

              Returns the log format, either JSON or TEXT

        • TransitEncryptionEnabled (boolean) --

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

        • TransitEncryptionMode (string) --

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

        • ScaleConfig (dict) --

          The scaling configuration changes that are pending for the Memcached cluster.

          • ScalePercentage (integer) --

            The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

          • ScaleIntervalMinutes (integer) --

            The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

      • NotificationConfiguration (dict) --

        Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).

        • TopicArn (string) --

          The Amazon Resource Name (ARN) that identifies the topic.

        • TopicStatus (string) --

          The current state of the topic.

      • CacheSecurityGroups (list) --

        A list of cache security group elements, composed of name and status sub-elements.

        • (dict) --

          Represents a cluster's status within a particular cache security group.

          • CacheSecurityGroupName (string) --

            The name of the cache security group.

          • Status (string) --

            The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • CacheParameterGroup (dict) --

        Status of the cache parameter group.

        • CacheParameterGroupName (string) --

          The name of the cache parameter group.

        • ParameterApplyStatus (string) --

          The status of parameter updates.

        • CacheNodeIdsToReboot (list) --

          A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

          • (string) --

      • CacheSubnetGroupName (string) --

        The name of the cache subnet group associated with the cluster.

      • CacheNodes (list) --

        A list of cache nodes that are members of the cluster.

        • (dict) --

          Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached, Valkey or Redis OSS.

          The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

          • General purpose:

            • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

          • Compute optimized:

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

          • Memory optimized:

            • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

          Additional node type info

          • All current generation instance types are created in Amazon VPC by default.

          • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

          • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

          • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

          • CacheNodeId (string) --

            The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's Amazon account.

          • CacheNodeStatus (string) --

            The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.

          • CacheNodeCreateTime (datetime) --

            The date and time when the cache node was created.

          • Endpoint (dict) --

            The hostname for connecting to this cache node.

            • Address (string) --

              The DNS hostname of the cache node.

            • Port (integer) --

              The port number that the cache engine is listening on.

          • ParameterGroupStatus (string) --

            The status of the parameter group applied to this cache node.

          • SourceCacheNodeId (string) --

            The ID of the primary node to which this read replica node is synchronized. If this field is empty, this node is not associated with a primary cluster.

          • CustomerAvailabilityZone (string) --

            The Availability Zone where this node was created and now resides.

          • CustomerOutpostArn (string) --

            The customer outpost ARN of the cache node.

      • AutoMinorVersionUpgrade (boolean) --

        If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

      • SecurityGroups (list) --

        A list of VPC Security Groups associated with the cluster.

        • (dict) --

          Represents a single cache security group and its status.

          • SecurityGroupId (string) --

            The identifier of the cache security group.

          • Status (string) --

            The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • ReplicationGroupId (string) --

        The replication group to which this cluster belongs. If this field is empty, the cluster is not associated with any replication group.

      • SnapshotRetentionLimit (integer) --

        The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

      • SnapshotWindow (string) --

        The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

        Example: 05:00-09:00

      • AuthTokenEnabled (boolean) --

        A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands.

        Default: false

      • AuthTokenLastModifiedDate (datetime) --

        The date the auth token was last modified

      • TransitEncryptionEnabled (boolean) --

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

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • AtRestEncryptionEnabled (boolean) --

        A flag that enables encryption at-rest when set to true.

        You cannot modify the value of AtRestEncryptionEnabled after the cluster is created. To enable at-rest encryption on a cluster you must set AtRestEncryptionEnabled to true when you create a cluster.

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • ARN (string) --

        The ARN (Amazon Resource Name) of the cache cluster.

      • ReplicationGroupLogDeliveryEnabled (boolean) --

        A boolean value indicating whether log delivery is enabled for the replication group.

      • LogDeliveryConfigurations (list) --

        Returns the destination, format and type of the logs.

        • (dict) --

          Returns the destination, format and type of the logs.

          • LogType (string) --

            Refers to slow-log or engine-log.

          • DestinationType (string) --

            Returns the destination type, either cloudwatch-logs or kinesis-firehose.

          • DestinationDetails (dict) --

            Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

            • CloudWatchLogsDetails (dict) --

              The configuration details of the CloudWatch Logs destination.

              • LogGroup (string) --

                The name of the CloudWatch Logs log group.

            • KinesisFirehoseDetails (dict) --

              The configuration details of the Kinesis Data Firehose destination.

              • DeliveryStream (string) --

                The name of the Kinesis Data Firehose delivery stream.

          • LogFormat (string) --

            Returns the log format, either JSON or TEXT.

          • Status (string) --

            Returns the log delivery configuration status. Values are one of enabling | disabling | modifying | active | error

          • Message (string) --

            Returns an error message for the log delivery configuration.

      • NetworkType (string) --

        Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • IpDiscovery (string) --

        The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • TransitEncryptionMode (string) --

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

RebootCacheCluster (updated) Link ¶
Changes (response)
{'CacheCluster': {'PendingModifiedValues': {'ScaleConfig': {'ScaleIntervalMinutes': 'integer',
                                                            'ScalePercentage': 'integer'}}}}

Reboots some, or all, of the cache nodes within a provisioned cluster. This operation applies any modified cache parameter groups to the cluster. The reboot operation takes place as soon as possible, and results in a momentary outage to the cluster. During the reboot, the cluster status is set to REBOOTING.

The reboot causes the contents of the cache (for each cache node being rebooted) to be lost.

When the reboot is complete, a cluster event is created.

Rebooting a cluster is currently supported on Memcached, Valkey and Redis OSS (cluster mode disabled) clusters. Rebooting is not supported on Valkey or Redis OSS (cluster mode enabled) clusters.

If you make changes to parameters that require a Valkey or Redis OSS (cluster mode enabled) cluster reboot for the changes to be applied, see Rebooting a Cluster for an alternate process.

See also: AWS API Documentation

Request Syntax

client.reboot_cache_cluster(
    CacheClusterId='string',
    CacheNodeIdsToReboot=[
        'string',
    ]
)
type CacheClusterId:

string

param CacheClusterId:

[REQUIRED]

The cluster identifier. This parameter is stored as a lowercase string.

type CacheNodeIdsToReboot:

list

param CacheNodeIdsToReboot:

[REQUIRED]

A list of cache node IDs to reboot. A node ID is a numeric identifier (0001, 0002, etc.). To reboot an entire cluster, specify all of the cache node IDs.

  • (string) --

rtype:

dict

returns:

Response Syntax

{
    'CacheCluster': {
        'CacheClusterId': 'string',
        'ConfigurationEndpoint': {
            'Address': 'string',
            'Port': 123
        },
        'ClientDownloadLandingPage': 'string',
        'CacheNodeType': 'string',
        'Engine': 'string',
        'EngineVersion': 'string',
        'CacheClusterStatus': 'string',
        'NumCacheNodes': 123,
        'PreferredAvailabilityZone': 'string',
        'PreferredOutpostArn': 'string',
        'CacheClusterCreateTime': datetime(2015, 1, 1),
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'NumCacheNodes': 123,
            'CacheNodeIdsToRemove': [
                'string',
            ],
            'EngineVersion': 'string',
            'CacheNodeType': 'string',
            'AuthTokenStatus': 'SETTING'|'ROTATING',
            'LogDeliveryConfigurations': [
                {
                    'LogType': 'slow-log'|'engine-log',
                    'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                    'DestinationDetails': {
                        'CloudWatchLogsDetails': {
                            'LogGroup': 'string'
                        },
                        'KinesisFirehoseDetails': {
                            'DeliveryStream': 'string'
                        }
                    },
                    'LogFormat': 'text'|'json'
                },
            ],
            'TransitEncryptionEnabled': True|False,
            'TransitEncryptionMode': 'preferred'|'required',
            'ScaleConfig': {
                'ScalePercentage': 123,
                'ScaleIntervalMinutes': 123
            }
        },
        'NotificationConfiguration': {
            'TopicArn': 'string',
            'TopicStatus': 'string'
        },
        'CacheSecurityGroups': [
            {
                'CacheSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'CacheParameterGroup': {
            'CacheParameterGroupName': 'string',
            'ParameterApplyStatus': 'string',
            'CacheNodeIdsToReboot': [
                'string',
            ]
        },
        'CacheSubnetGroupName': 'string',
        'CacheNodes': [
            {
                'CacheNodeId': 'string',
                'CacheNodeStatus': 'string',
                'CacheNodeCreateTime': datetime(2015, 1, 1),
                'Endpoint': {
                    'Address': 'string',
                    'Port': 123
                },
                'ParameterGroupStatus': 'string',
                'SourceCacheNodeId': 'string',
                'CustomerAvailabilityZone': 'string',
                'CustomerOutpostArn': 'string'
            },
        ],
        'AutoMinorVersionUpgrade': True|False,
        'SecurityGroups': [
            {
                'SecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ReplicationGroupId': 'string',
        'SnapshotRetentionLimit': 123,
        'SnapshotWindow': 'string',
        'AuthTokenEnabled': True|False,
        'AuthTokenLastModifiedDate': datetime(2015, 1, 1),
        'TransitEncryptionEnabled': True|False,
        'AtRestEncryptionEnabled': True|False,
        'ARN': 'string',
        'ReplicationGroupLogDeliveryEnabled': True|False,
        'LogDeliveryConfigurations': [
            {
                'LogType': 'slow-log'|'engine-log',
                'DestinationType': 'cloudwatch-logs'|'kinesis-firehose',
                'DestinationDetails': {
                    'CloudWatchLogsDetails': {
                        'LogGroup': 'string'
                    },
                    'KinesisFirehoseDetails': {
                        'DeliveryStream': 'string'
                    }
                },
                'LogFormat': 'text'|'json',
                'Status': 'active'|'enabling'|'modifying'|'disabling'|'error',
                'Message': 'string'
            },
        ],
        'NetworkType': 'ipv4'|'ipv6'|'dual_stack',
        'IpDiscovery': 'ipv4'|'ipv6',
        'TransitEncryptionMode': 'preferred'|'required'
    }
}

Response Structure

  • (dict) --

    • CacheCluster (dict) --

      Contains all of the attributes of a specific cluster.

      • CacheClusterId (string) --

        The user-supplied identifier of the cluster. This identifier is a unique key that identifies a cluster.

      • ConfigurationEndpoint (dict) --

        Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it.

        Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211

        • Address (string) --

          The DNS hostname of the cache node.

        • Port (integer) --

          The port number that the cache engine is listening on.

      • ClientDownloadLandingPage (string) --

        The URL of the web page where you can download the latest ElastiCache client library.

      • CacheNodeType (string) --

        The name of the compute and memory capacity node type for the cluster.

        The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

        • General purpose:

          • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

        • Compute optimized:

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

        • Memory optimized:

          • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

          • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

        Additional node type info

        • All current generation instance types are created in Amazon VPC by default.

        • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

        • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

        • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

      • Engine (string) --

        The name of the cache engine ( memcached or redis) to be used for this cluster.

      • EngineVersion (string) --

        The version of the cache engine that is used in this cluster.

      • CacheClusterStatus (string) --

        The current state of this cluster, one of the following values: available, creating, deleted, deleting, incompatible-network, modifying, rebooting cluster nodes, restore-failed, or snapshotting.

      • NumCacheNodes (integer) --

        The number of cache nodes in the cluster.

        For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

      • PreferredAvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located or "Multiple" if the cache nodes are located in different Availability Zones.

      • PreferredOutpostArn (string) --

        The outpost ARN in which the cache cluster is created.

      • CacheClusterCreateTime (datetime) --

        The date and time when the cluster was created.

      • PreferredMaintenanceWindow (string) --

        Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

        Valid values for ddd are:

        • sun

        • mon

        • tue

        • wed

        • thu

        • fri

        • sat

        Example: sun:23:00-mon:01:30

      • PendingModifiedValues (dict) --

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

        • NumCacheNodes (integer) --

          The new number of cache nodes for the cluster.

          For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1 and 40.

        • CacheNodeIdsToRemove (list) --

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

          • (string) --

        • EngineVersion (string) --

          The new cache engine version that the cluster runs.

        • CacheNodeType (string) --

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

        • AuthTokenStatus (string) --

          The auth token status

        • LogDeliveryConfigurations (list) --

          The log delivery configurations being modified

          • (dict) --

            The log delivery configurations being modified

            • LogType (string) --

              Refers to slow-log or engine-log..

            • DestinationType (string) --

              Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

            • DestinationDetails (dict) --

              Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

              • CloudWatchLogsDetails (dict) --

                The configuration details of the CloudWatch Logs destination.

                • LogGroup (string) --

                  The name of the CloudWatch Logs log group.

              • KinesisFirehoseDetails (dict) --

                The configuration details of the Kinesis Data Firehose destination.

                • DeliveryStream (string) --

                  The name of the Kinesis Data Firehose delivery stream.

            • LogFormat (string) --

              Returns the log format, either JSON or TEXT

        • TransitEncryptionEnabled (boolean) --

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

        • TransitEncryptionMode (string) --

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

        • ScaleConfig (dict) --

          The scaling configuration changes that are pending for the Memcached cluster.

          • ScalePercentage (integer) --

            The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

          • ScaleIntervalMinutes (integer) --

            The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

      • NotificationConfiguration (dict) --

        Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).

        • TopicArn (string) --

          The Amazon Resource Name (ARN) that identifies the topic.

        • TopicStatus (string) --

          The current state of the topic.

      • CacheSecurityGroups (list) --

        A list of cache security group elements, composed of name and status sub-elements.

        • (dict) --

          Represents a cluster's status within a particular cache security group.

          • CacheSecurityGroupName (string) --

            The name of the cache security group.

          • Status (string) --

            The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • CacheParameterGroup (dict) --

        Status of the cache parameter group.

        • CacheParameterGroupName (string) --

          The name of the cache parameter group.

        • ParameterApplyStatus (string) --

          The status of parameter updates.

        • CacheNodeIdsToReboot (list) --

          A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

          • (string) --

      • CacheSubnetGroupName (string) --

        The name of the cache subnet group associated with the cluster.

      • CacheNodes (list) --

        A list of cache nodes that are members of the cluster.

        • (dict) --

          Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached, Valkey or Redis OSS.

          The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

          • General purpose:

            • Current generation: M7g node types: cache.m7g.large, cache.m7g.xlarge, cache.m7g.2xlarge, cache.m7g.4xlarge, cache.m7g.8xlarge, cache.m7g.12xlarge, cache.m7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

          • Compute optimized:

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) C1 node types: cache.c1.xlarge

          • Memory optimized:

            • Current generation: R7g node types: cache.r7g.large, cache.r7g.xlarge, cache.r7g.2xlarge, cache.r7g.4xlarge, cache.r7g.8xlarge, cache.r7g.12xlarge, cache.r7g.16xlarge

            • Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

          Additional node type info

          • All current generation instance types are created in Amazon VPC by default.

          • Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.

          • Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.

          • The configuration variables appendonly and appendfsync are not supported on Valkey, or on Redis OSS version 2.8.22 and later.

          • CacheNodeId (string) --

            The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's Amazon account.

          • CacheNodeStatus (string) --

            The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.

          • CacheNodeCreateTime (datetime) --

            The date and time when the cache node was created.

          • Endpoint (dict) --

            The hostname for connecting to this cache node.

            • Address (string) --

              The DNS hostname of the cache node.

            • Port (integer) --

              The port number that the cache engine is listening on.

          • ParameterGroupStatus (string) --

            The status of the parameter group applied to this cache node.

          • SourceCacheNodeId (string) --

            The ID of the primary node to which this read replica node is synchronized. If this field is empty, this node is not associated with a primary cluster.

          • CustomerAvailabilityZone (string) --

            The Availability Zone where this node was created and now resides.

          • CustomerOutpostArn (string) --

            The customer outpost ARN of the cache node.

      • AutoMinorVersionUpgrade (boolean) --

        If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.

      • SecurityGroups (list) --

        A list of VPC Security Groups associated with the cluster.

        • (dict) --

          Represents a single cache security group and its status.

          • SecurityGroupId (string) --

            The identifier of the cache security group.

          • Status (string) --

            The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

      • ReplicationGroupId (string) --

        The replication group to which this cluster belongs. If this field is empty, the cluster is not associated with any replication group.

      • SnapshotRetentionLimit (integer) --

        The number of days for which ElastiCache retains automatic cluster snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

      • SnapshotWindow (string) --

        The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your cluster.

        Example: 05:00-09:00

      • AuthTokenEnabled (boolean) --

        A flag that enables using an AuthToken (password) when issuing Valkey or Redis OSS commands.

        Default: false

      • AuthTokenLastModifiedDate (datetime) --

        The date the auth token was last modified

      • TransitEncryptionEnabled (boolean) --

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

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • AtRestEncryptionEnabled (boolean) --

        A flag that enables encryption at-rest when set to true.

        You cannot modify the value of AtRestEncryptionEnabled after the cluster is created. To enable at-rest encryption on a cluster you must set AtRestEncryptionEnabled to true when you create a cluster.

        Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.

        Default: false

      • ARN (string) --

        The ARN (Amazon Resource Name) of the cache cluster.

      • ReplicationGroupLogDeliveryEnabled (boolean) --

        A boolean value indicating whether log delivery is enabled for the replication group.

      • LogDeliveryConfigurations (list) --

        Returns the destination, format and type of the logs.

        • (dict) --

          Returns the destination, format and type of the logs.

          • LogType (string) --

            Refers to slow-log or engine-log.

          • DestinationType (string) --

            Returns the destination type, either cloudwatch-logs or kinesis-firehose.

          • DestinationDetails (dict) --

            Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

            • CloudWatchLogsDetails (dict) --

              The configuration details of the CloudWatch Logs destination.

              • LogGroup (string) --

                The name of the CloudWatch Logs log group.

            • KinesisFirehoseDetails (dict) --

              The configuration details of the Kinesis Data Firehose destination.

              • DeliveryStream (string) --

                The name of the Kinesis Data Firehose delivery stream.

          • LogFormat (string) --

            Returns the log format, either JSON or TEXT.

          • Status (string) --

            Returns the log delivery configuration status. Values are one of enabling | disabling | modifying | active | error

          • Message (string) --

            Returns an error message for the log delivery configuration.

      • NetworkType (string) --

        Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • IpDiscovery (string) --

        The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 to 7.1 or Memcached engine version 1.6.6 and above on all instances built on the Nitro system.

      • TransitEncryptionMode (string) --

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