com.amazonaws.services.elasticache.model.CreateReplicationGroupRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticache Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.elasticache.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* Represents the input of a CreateReplicationGroup
operation.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateReplicationGroupRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The replication group identifier. This parameter is stored as a lowercase string.
*
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*
*/
private String replicationGroupId;
/**
*
* A user-created description for the replication group.
*
*/
private String replicationGroupDescription;
/**
*
* The name of the Global datastore
*
*/
private String globalReplicationGroupId;
/**
*
* The identifier of the cluster that serves as the primary for this replication group. This cluster must already
* exist and have a status of available
.
*
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*
*/
private String primaryClusterId;
/**
*
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary
* fails.
*
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication groups.
*
*
* Default: false
*
*/
private Boolean automaticFailoverEnabled;
/**
*
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*
*/
private Boolean multiAZEnabled;
/**
*
* The number of clusters this replication group initially has.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at least 2. If
* AutomaticFailoverEnabled
is false
you can omit this parameter (it will default to 1),
* or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*
*/
private Integer numCacheClusters;
/**
*
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in
* the first AZ in the list.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*
*/
private com.amazonaws.internal.SdkInternalList preferredCacheClusterAZs;
/**
*
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode enabled)
* replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to 1.
*
*
* Default: 1
*
*/
private Integer numNodeGroups;
/**
*
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0
* to 5.
*
*/
private Integer replicasPerNodeGroup;
/**
*
* A list of node group (shard) configuration options. Each node group (shard) configuration has the following
* members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
, ReplicaCount
,
* and Slots
.
*
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication group,
* you can use this parameter to individually configure each node group (shard), or you can omit this parameter.
* However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You must
* configure each node group (shard) using this parameter because you must specify the slots for each node group.
*
*/
private com.amazonaws.internal.SdkInternalList nodeGroupConfiguration;
/**
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
, cache.m6g.2xlarge
,
* cache.m6g.4xlarge
, cache.m6g.8xlarge
, cache.m6g.12xlarge
,
* cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
, cache.m5.2xlarge
,
* cache.m5.4xlarge
, cache.m5.12xlarge
, cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
, cache.m4.2xlarge
,
* cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine version
* 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
, cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
, cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
, cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
, cache.r6g.2xlarge
,
* cache.r6g.4xlarge
, cache.r6g.8xlarge
, cache.r6g.12xlarge
,
* cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
, cache.r5.2xlarge
,
* cache.r5.4xlarge
, cache.r5.12xlarge
, cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
, cache.r4.2xlarge
,
* cache.r4.4xlarge
, cache.r4.8xlarge
, cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported on Redis
* OSS version 2.8.22 and later.
*
*
*
*/
private String cacheNodeType;
/**
*
* The name of the cache engine to be used for the clusters in this replication group. The value must be set to
* Redis
.
*
*/
private String engine;
/**
*
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*
*/
private String engineVersion;
/**
*
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a default
* parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*
*/
private String cacheParameterGroupName;
/**
*
* The name of the cache subnet group to be used for the replication group.
*
*
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you start
* creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*
*/
private String cacheSubnetGroupName;
/**
*
* A list of cache security group names to associate with this replication group.
*
*/
private com.amazonaws.internal.SdkInternalList cacheSecurityGroupNames;
/**
*
* One or more Amazon VPC security groups associated with this replication group.
*
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (Amazon
* VPC).
*
*/
private com.amazonaws.internal.SdkInternalList securityGroupIds;
/**
*
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in Amazon
* S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in the ARN
* cannot contain any commas. The new replication group will have the number of node groups (console: shards)
* specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*
*/
private com.amazonaws.internal.SdkInternalList snapshotArns;
/**
*
* The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to
* restoring
while the new replication group is being created.
*
*/
private String snapshotName;
/**
*
* 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
*
*/
private String preferredMaintenanceWindow;
/**
*
* The port number on which each member of the replication group accepts connections.
*
*/
private Integer port;
/**
*
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are
* sent.
*
*
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*
*/
private String notificationTopicArn;
/**
*
* If you are running 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.
*
*/
private Boolean autoMinorVersionUpgrade;
/**
*
* The number of days for which ElastiCache retains automatic 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.
*
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*
*/
private Integer snapshotRetentionLimit;
/**
*
* 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.
*
*/
private String snapshotWindow;
/**
*
* Reserved parameter. The password used to access a password protected server.
*
*
* AuthToken
can be specified only on replication groups where TransitEncryptionEnabled
is
* true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*
*/
private String authToken;
/**
*
* A flag that enables in-transit encryption when set to true
.
*
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is being
* created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*/
private Boolean transitEncryptionEnabled;
/**
*
* A flag that enables encryption at rest when set to true
.
*
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is created. To
* enable encryption at rest on a replication group you must set AtRestEncryptionEnabled
to
* true
when you create the replication group.
*
*
* 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
*
*/
private Boolean atRestEncryptionEnabled;
/**
*
* The ID of the KMS key used to encrypt the disk in the cluster.
*
*/
private String kmsKeyId;
/**
*
* The user group to associate with the replication group.
*
*/
private com.amazonaws.internal.SdkInternalList userGroupIds;
/**
*
* Specifies the destination, format and type of the logs.
*
*/
private com.amazonaws.internal.SdkInternalList logDeliveryConfigurations;
/**
*
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*
*/
private Boolean dataTieringEnabled;
/**
*
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for workloads
* using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
*
*/
private String networkType;
/**
*
* The network type you choose when creating a replication group, either ipv4
| ipv6
. IPv6
* is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all
* instances built on the Nitro system.
*
*/
private String ipDiscovery;
/**
*
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted and
* unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires you to
* first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
*
*/
private String transitEncryptionMode;
/**
*
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to
* Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster
* mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster
* mode configuration and set the cluster mode to Enabled.
*
*/
private String clusterMode;
/**
*
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
*
*/
private String serverlessCacheSnapshotName;
/**
*
* The replication group identifier. This parameter is stored as a lowercase string.
*
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*
*
* @param replicationGroupId
* The replication group identifier. This parameter is stored as a lowercase string.
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*/
public void setReplicationGroupId(String replicationGroupId) {
this.replicationGroupId = replicationGroupId;
}
/**
*
* The replication group identifier. This parameter is stored as a lowercase string.
*
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*
*
* @return The replication group identifier. This parameter is stored as a lowercase string.
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*/
public String getReplicationGroupId() {
return this.replicationGroupId;
}
/**
*
* The replication group identifier. This parameter is stored as a lowercase string.
*
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
*
*
* @param replicationGroupId
* The replication group identifier. This parameter is stored as a lowercase string.
*
* Constraints:
*
*
* -
*
* A name must contain from 1 to 40 alphanumeric characters or hyphens.
*
*
* -
*
* The first character must be a letter.
*
*
* -
*
* A name cannot end with a hyphen or contain two consecutive hyphens.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withReplicationGroupId(String replicationGroupId) {
setReplicationGroupId(replicationGroupId);
return this;
}
/**
*
* A user-created description for the replication group.
*
*
* @param replicationGroupDescription
* A user-created description for the replication group.
*/
public void setReplicationGroupDescription(String replicationGroupDescription) {
this.replicationGroupDescription = replicationGroupDescription;
}
/**
*
* A user-created description for the replication group.
*
*
* @return A user-created description for the replication group.
*/
public String getReplicationGroupDescription() {
return this.replicationGroupDescription;
}
/**
*
* A user-created description for the replication group.
*
*
* @param replicationGroupDescription
* A user-created description for the replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withReplicationGroupDescription(String replicationGroupDescription) {
setReplicationGroupDescription(replicationGroupDescription);
return this;
}
/**
*
* The name of the Global datastore
*
*
* @param globalReplicationGroupId
* The name of the Global datastore
*/
public void setGlobalReplicationGroupId(String globalReplicationGroupId) {
this.globalReplicationGroupId = globalReplicationGroupId;
}
/**
*
* The name of the Global datastore
*
*
* @return The name of the Global datastore
*/
public String getGlobalReplicationGroupId() {
return this.globalReplicationGroupId;
}
/**
*
* The name of the Global datastore
*
*
* @param globalReplicationGroupId
* The name of the Global datastore
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withGlobalReplicationGroupId(String globalReplicationGroupId) {
setGlobalReplicationGroupId(globalReplicationGroupId);
return this;
}
/**
*
* The identifier of the cluster that serves as the primary for this replication group. This cluster must already
* exist and have a status of available
.
*
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*
*
* @param primaryClusterId
* The identifier of the cluster that serves as the primary for this replication group. This cluster must
* already exist and have a status of available
.
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*/
public void setPrimaryClusterId(String primaryClusterId) {
this.primaryClusterId = primaryClusterId;
}
/**
*
* The identifier of the cluster that serves as the primary for this replication group. This cluster must already
* exist and have a status of available
.
*
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*
*
* @return The identifier of the cluster that serves as the primary for this replication group. This cluster must
* already exist and have a status of available
.
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*/
public String getPrimaryClusterId() {
return this.primaryClusterId;
}
/**
*
* The identifier of the cluster that serves as the primary for this replication group. This cluster must already
* exist and have a status of available
.
*
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
*
*
* @param primaryClusterId
* The identifier of the cluster that serves as the primary for this replication group. This cluster must
* already exist and have a status of available
.
*
* This parameter is not required if NumCacheClusters
, NumNodeGroups
, or
* ReplicasPerNodeGroup
is specified.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withPrimaryClusterId(String primaryClusterId) {
setPrimaryClusterId(primaryClusterId);
return this;
}
/**
*
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary
* fails.
*
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication groups.
*
*
* Default: false
*
*
* @param automaticFailoverEnabled
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing
* primary fails.
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication
* groups.
*
*
* Default: false
*/
public void setAutomaticFailoverEnabled(Boolean automaticFailoverEnabled) {
this.automaticFailoverEnabled = automaticFailoverEnabled;
}
/**
*
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary
* fails.
*
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication groups.
*
*
* Default: false
*
*
* @return Specifies whether a read-only replica is automatically promoted to read/write primary if the existing
* primary fails.
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication
* groups.
*
*
* Default: false
*/
public Boolean getAutomaticFailoverEnabled() {
return this.automaticFailoverEnabled;
}
/**
*
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary
* fails.
*
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication groups.
*
*
* Default: false
*
*
* @param automaticFailoverEnabled
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing
* primary fails.
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication
* groups.
*
*
* Default: false
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withAutomaticFailoverEnabled(Boolean automaticFailoverEnabled) {
setAutomaticFailoverEnabled(automaticFailoverEnabled);
return this;
}
/**
*
* Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary
* fails.
*
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication groups.
*
*
* Default: false
*
*
* @return Specifies whether a read-only replica is automatically promoted to read/write primary if the existing
* primary fails.
*
* AutomaticFailoverEnabled
must be enabled for Redis OSS (cluster mode enabled) replication
* groups.
*
*
* Default: false
*/
public Boolean isAutomaticFailoverEnabled() {
return this.automaticFailoverEnabled;
}
/**
*
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*
*
* @param multiAZEnabled
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*/
public void setMultiAZEnabled(Boolean multiAZEnabled) {
this.multiAZEnabled = multiAZEnabled;
}
/**
*
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*
*
* @return A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*/
public Boolean getMultiAZEnabled() {
return this.multiAZEnabled;
}
/**
*
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*
*
* @param multiAZEnabled
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withMultiAZEnabled(Boolean multiAZEnabled) {
setMultiAZEnabled(multiAZEnabled);
return this;
}
/**
*
* A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*
*
* @return A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime:
* Multi-AZ.
*/
public Boolean isMultiAZEnabled() {
return this.multiAZEnabled;
}
/**
*
* The number of clusters this replication group initially has.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at least 2. If
* AutomaticFailoverEnabled
is false
you can omit this parameter (it will default to 1),
* or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*
*
* @param numCacheClusters
* The number of clusters this replication group initially has.
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at
* least 2. If AutomaticFailoverEnabled
is false
you can omit this parameter (it
* will default to 1), or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*/
public void setNumCacheClusters(Integer numCacheClusters) {
this.numCacheClusters = numCacheClusters;
}
/**
*
* The number of clusters this replication group initially has.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at least 2. If
* AutomaticFailoverEnabled
is false
you can omit this parameter (it will default to 1),
* or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*
*
* @return The number of clusters this replication group initially has.
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at
* least 2. If AutomaticFailoverEnabled
is false
you can omit this parameter (it
* will default to 1), or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*/
public Integer getNumCacheClusters() {
return this.numCacheClusters;
}
/**
*
* The number of clusters this replication group initially has.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at least 2. If
* AutomaticFailoverEnabled
is false
you can omit this parameter (it will default to 1),
* or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
*
*
* @param numCacheClusters
* The number of clusters this replication group initially has.
*
* This parameter is not used if there is more than one node group (shard). You should use
* ReplicasPerNodeGroup
instead.
*
*
* If AutomaticFailoverEnabled
is true
, the value of this parameter must be at
* least 2. If AutomaticFailoverEnabled
is false
you can omit this parameter (it
* will default to 1), or you can explicitly set it to a value between 2 and 6.
*
*
* The maximum permitted value for NumCacheClusters
is 6 (1 primary plus 5 replicas).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withNumCacheClusters(Integer numCacheClusters) {
setNumCacheClusters(numCacheClusters);
return this;
}
/**
*
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in
* the first AZ in the list.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*
*
* @return A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is
* created in the first AZ in the list.
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters
* in Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*/
public java.util.List getPreferredCacheClusterAZs() {
if (preferredCacheClusterAZs == null) {
preferredCacheClusterAZs = new com.amazonaws.internal.SdkInternalList();
}
return preferredCacheClusterAZs;
}
/**
*
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in
* the first AZ in the list.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*
*
* @param preferredCacheClusterAZs
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is
* created in the first AZ in the list.
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*/
public void setPreferredCacheClusterAZs(java.util.Collection preferredCacheClusterAZs) {
if (preferredCacheClusterAZs == null) {
this.preferredCacheClusterAZs = null;
return;
}
this.preferredCacheClusterAZs = new com.amazonaws.internal.SdkInternalList(preferredCacheClusterAZs);
}
/**
*
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in
* the first AZ in the list.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPreferredCacheClusterAZs(java.util.Collection)} or
* {@link #withPreferredCacheClusterAZs(java.util.Collection)} if you want to override the existing values.
*
*
* @param preferredCacheClusterAZs
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is
* created in the first AZ in the list.
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withPreferredCacheClusterAZs(String... preferredCacheClusterAZs) {
if (this.preferredCacheClusterAZs == null) {
setPreferredCacheClusterAZs(new com.amazonaws.internal.SdkInternalList(preferredCacheClusterAZs.length));
}
for (String ele : preferredCacheClusterAZs) {
this.preferredCacheClusterAZs.add(ele);
}
return this;
}
/**
*
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in
* the first AZ in the list.
*
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
*
*
* @param preferredCacheClusterAZs
* A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the
* Availability Zones in the list is the order in which clusters are allocated. The primary cluster is
* created in the first AZ in the list.
*
* This parameter is not used if there is more than one node group (shard). You should use
* NodeGroupConfiguration
instead.
*
*
*
* If you are creating your replication group in an Amazon VPC (recommended), you can only locate clusters in
* Availability Zones associated with the subnets in the selected subnet group.
*
*
* The number of Availability Zones listed must equal the value of NumCacheClusters
.
*
*
*
* Default: system chosen Availability Zones.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withPreferredCacheClusterAZs(java.util.Collection preferredCacheClusterAZs) {
setPreferredCacheClusterAZs(preferredCacheClusterAZs);
return this;
}
/**
*
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode enabled)
* replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to 1.
*
*
* Default: 1
*
*
* @param numNodeGroups
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode
* enabled) replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to
* 1.
*
* Default: 1
*/
public void setNumNodeGroups(Integer numNodeGroups) {
this.numNodeGroups = numNodeGroups;
}
/**
*
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode enabled)
* replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to 1.
*
*
* Default: 1
*
*
* @return An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode
* enabled) replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to
* 1.
*
* Default: 1
*/
public Integer getNumNodeGroups() {
return this.numNodeGroups;
}
/**
*
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode enabled)
* replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to 1.
*
*
* Default: 1
*
*
* @param numNodeGroups
* An optional parameter that specifies the number of node groups (shards) for this Redis OSS (cluster mode
* enabled) replication group. For Redis OSS (cluster mode disabled) either omit this parameter or set it to
* 1.
*
* Default: 1
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withNumNodeGroups(Integer numNodeGroups) {
setNumNodeGroups(numNodeGroups);
return this;
}
/**
*
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0
* to 5.
*
*
* @param replicasPerNodeGroup
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values
* are 0 to 5.
*/
public void setReplicasPerNodeGroup(Integer replicasPerNodeGroup) {
this.replicasPerNodeGroup = replicasPerNodeGroup;
}
/**
*
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0
* to 5.
*
*
* @return An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values
* are 0 to 5.
*/
public Integer getReplicasPerNodeGroup() {
return this.replicasPerNodeGroup;
}
/**
*
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0
* to 5.
*
*
* @param replicasPerNodeGroup
* An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values
* are 0 to 5.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withReplicasPerNodeGroup(Integer replicasPerNodeGroup) {
setReplicasPerNodeGroup(replicasPerNodeGroup);
return this;
}
/**
*
* A list of node group (shard) configuration options. Each node group (shard) configuration has the following
* members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
, ReplicaCount
,
* and Slots
.
*
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication group,
* you can use this parameter to individually configure each node group (shard), or you can omit this parameter.
* However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You must
* configure each node group (shard) using this parameter because you must specify the slots for each node group.
*
*
* @return A list of node group (shard) configuration options. Each node group (shard) configuration has the
* following members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
,
* ReplicaCount
, and Slots
.
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication
* group, you can use this parameter to individually configure each node group (shard), or you can omit this
* parameter. However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb
* file. You must configure each node group (shard) using this parameter because you must specify the slots
* for each node group.
*/
public java.util.List getNodeGroupConfiguration() {
if (nodeGroupConfiguration == null) {
nodeGroupConfiguration = new com.amazonaws.internal.SdkInternalList();
}
return nodeGroupConfiguration;
}
/**
*
* A list of node group (shard) configuration options. Each node group (shard) configuration has the following
* members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
, ReplicaCount
,
* and Slots
.
*
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication group,
* you can use this parameter to individually configure each node group (shard), or you can omit this parameter.
* However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You must
* configure each node group (shard) using this parameter because you must specify the slots for each node group.
*
*
* @param nodeGroupConfiguration
* A list of node group (shard) configuration options. Each node group (shard) configuration has the
* following members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
,
* ReplicaCount
, and Slots
.
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication
* group, you can use this parameter to individually configure each node group (shard), or you can omit this
* parameter. However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb
* file. You must configure each node group (shard) using this parameter because you must specify the slots
* for each node group.
*/
public void setNodeGroupConfiguration(java.util.Collection nodeGroupConfiguration) {
if (nodeGroupConfiguration == null) {
this.nodeGroupConfiguration = null;
return;
}
this.nodeGroupConfiguration = new com.amazonaws.internal.SdkInternalList(nodeGroupConfiguration);
}
/**
*
* A list of node group (shard) configuration options. Each node group (shard) configuration has the following
* members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
, ReplicaCount
,
* and Slots
.
*
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication group,
* you can use this parameter to individually configure each node group (shard), or you can omit this parameter.
* However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You must
* configure each node group (shard) using this parameter because you must specify the slots for each node group.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNodeGroupConfiguration(java.util.Collection)} or
* {@link #withNodeGroupConfiguration(java.util.Collection)} if you want to override the existing values.
*
*
* @param nodeGroupConfiguration
* A list of node group (shard) configuration options. Each node group (shard) configuration has the
* following members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
,
* ReplicaCount
, and Slots
.
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication
* group, you can use this parameter to individually configure each node group (shard), or you can omit this
* parameter. However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb
* file. You must configure each node group (shard) using this parameter because you must specify the slots
* for each node group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withNodeGroupConfiguration(NodeGroupConfiguration... nodeGroupConfiguration) {
if (this.nodeGroupConfiguration == null) {
setNodeGroupConfiguration(new com.amazonaws.internal.SdkInternalList(nodeGroupConfiguration.length));
}
for (NodeGroupConfiguration ele : nodeGroupConfiguration) {
this.nodeGroupConfiguration.add(ele);
}
return this;
}
/**
*
* A list of node group (shard) configuration options. Each node group (shard) configuration has the following
* members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
, ReplicaCount
,
* and Slots
.
*
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication group,
* you can use this parameter to individually configure each node group (shard), or you can omit this parameter.
* However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You must
* configure each node group (shard) using this parameter because you must specify the slots for each node group.
*
*
* @param nodeGroupConfiguration
* A list of node group (shard) configuration options. Each node group (shard) configuration has the
* following members: PrimaryAvailabilityZone
, ReplicaAvailabilityZones
,
* ReplicaCount
, and Slots
.
*
* If you're creating a Redis OSS (cluster mode disabled) or a Redis OSS (cluster mode enabled) replication
* group, you can use this parameter to individually configure each node group (shard), or you can omit this
* parameter. However, it is required when seeding a Redis OSS (cluster mode enabled) cluster from a S3 rdb
* file. You must configure each node group (shard) using this parameter because you must specify the slots
* for each node group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withNodeGroupConfiguration(java.util.Collection nodeGroupConfiguration) {
setNodeGroupConfiguration(nodeGroupConfiguration);
return this;
}
/**
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
, cache.m6g.2xlarge
,
* cache.m6g.4xlarge
, cache.m6g.8xlarge
, cache.m6g.12xlarge
,
* cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
, cache.m5.2xlarge
,
* cache.m5.4xlarge
, cache.m5.12xlarge
, cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
, cache.m4.2xlarge
,
* cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine version
* 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
, cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
, cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
, cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
, cache.r6g.2xlarge
,
* cache.r6g.4xlarge
, cache.r6g.8xlarge
, cache.r6g.12xlarge
,
* cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
, cache.r5.2xlarge
,
* cache.r5.4xlarge
, cache.r5.12xlarge
, cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
, cache.r4.2xlarge
,
* cache.r4.4xlarge
, cache.r4.8xlarge
, cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported on Redis
* OSS version 2.8.22 and later.
*
*
*
*
* @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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
,
* cache.m6g.2xlarge
, cache.m6g.4xlarge
, cache.m6g.8xlarge
,
* cache.m6g.12xlarge
, cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
,
* cache.m5.2xlarge
, cache.m5.4xlarge
, cache.m5.12xlarge
,
* cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
,
* cache.m4.2xlarge
, cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine
* version 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
,
* cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
,
* cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
,
* cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
,
* cache.r6g.2xlarge
, cache.r6g.4xlarge
, cache.r6g.8xlarge
,
* cache.r6g.12xlarge
, cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
,
* cache.r5.2xlarge
, cache.r5.4xlarge
, cache.r5.12xlarge
,
* cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
,
* cache.r4.2xlarge
, cache.r4.4xlarge
, cache.r4.8xlarge
,
* cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported
* on Redis OSS version 2.8.22 and later.
*
*
*/
public void setCacheNodeType(String cacheNodeType) {
this.cacheNodeType = 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
, cache.m6g.2xlarge
,
* cache.m6g.4xlarge
, cache.m6g.8xlarge
, cache.m6g.12xlarge
,
* cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
, cache.m5.2xlarge
,
* cache.m5.4xlarge
, cache.m5.12xlarge
, cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
, cache.m4.2xlarge
,
* cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine version
* 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
, cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
, cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
, cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
, cache.r6g.2xlarge
,
* cache.r6g.4xlarge
, cache.r6g.8xlarge
, cache.r6g.12xlarge
,
* cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
, cache.r5.2xlarge
,
* cache.r5.4xlarge
, cache.r5.12xlarge
, cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
, cache.r4.2xlarge
,
* cache.r4.4xlarge
, cache.r4.8xlarge
, cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported on Redis
* OSS version 2.8.22 and later.
*
*
*
*
* @return 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
,
* cache.m6g.2xlarge
, cache.m6g.4xlarge
, cache.m6g.8xlarge
,
* cache.m6g.12xlarge
, cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
,
* cache.m5.2xlarge
, cache.m5.4xlarge
, cache.m5.12xlarge
,
* cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
,
* cache.m4.2xlarge
, cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine
* version 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
,
* cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
,
* cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
,
* cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
,
* cache.r6g.2xlarge
, cache.r6g.4xlarge
, cache.r6g.8xlarge
,
* cache.r6g.12xlarge
, cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
,
* cache.r5.2xlarge
, cache.r5.4xlarge
, cache.r5.12xlarge
,
* cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
,
* cache.r4.2xlarge
, cache.r4.4xlarge
, cache.r4.8xlarge
,
* cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported
* on Redis OSS version 2.8.22 and later.
*
*
*/
public String getCacheNodeType() {
return this.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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
, cache.m6g.2xlarge
,
* cache.m6g.4xlarge
, cache.m6g.8xlarge
, cache.m6g.12xlarge
,
* cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
, cache.m5.2xlarge
,
* cache.m5.4xlarge
, cache.m5.12xlarge
, cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
, cache.m4.2xlarge
,
* cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine version
* 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
, cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
, cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
, cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine version
* 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
, cache.r6g.2xlarge
,
* cache.r6g.4xlarge
, cache.r6g.8xlarge
, cache.r6g.12xlarge
,
* cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
, cache.r5.2xlarge
,
* cache.r5.4xlarge
, cache.r5.12xlarge
, cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
, cache.r4.2xlarge
,
* cache.r4.4xlarge
, cache.r4.8xlarge
, cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported on Redis
* OSS version 2.8.22 and later.
*
*
*
*
* @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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* M6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.m6g.large
, cache.m6g.xlarge
,
* cache.m6g.2xlarge
, cache.m6g.4xlarge
, cache.m6g.8xlarge
,
* cache.m6g.12xlarge
, cache.m6g.16xlarge
*
*
* M5 node types: cache.m5.large
, cache.m5.xlarge
,
* cache.m5.2xlarge
, cache.m5.4xlarge
, cache.m5.12xlarge
,
* cache.m5.24xlarge
*
*
* M4 node types: cache.m4.large
, cache.m4.xlarge
,
* cache.m4.2xlarge
, cache.m4.4xlarge
, cache.m4.10xlarge
*
*
* T4g node types (available only for Redis OSS engine version 5.0.6 onward and Memcached engine
* version 1.5.16 onward): cache.t4g.micro
, cache.t4g.small
,
* cache.t4g.medium
*
*
* T3 node types: cache.t3.micro
, cache.t3.small
,
* cache.t3.medium
*
*
* T2 node types: cache.t2.micro
, cache.t2.small
,
* cache.t2.medium
*
*
* -
*
* 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
*
*
*
* For region availability, see Supported Node Types
*
*
*
* R6g node types (available only for Redis OSS engine version 5.0.6 onward and for Memcached engine
* version 1.5.16 onward): cache.r6g.large
, cache.r6g.xlarge
,
* cache.r6g.2xlarge
, cache.r6g.4xlarge
, cache.r6g.8xlarge
,
* cache.r6g.12xlarge
, cache.r6g.16xlarge
*
*
* R5 node types: cache.r5.large
, cache.r5.xlarge
,
* cache.r5.2xlarge
, cache.r5.4xlarge
, cache.r5.12xlarge
,
* cache.r5.24xlarge
*
*
* R4 node types: cache.r4.large
, cache.r4.xlarge
,
* cache.r4.2xlarge
, cache.r4.4xlarge
, cache.r4.8xlarge
,
* cache.r4.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.
*
*
* -
*
* Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
*
*
* -
*
* Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
*
*
* -
*
* Redis OSS configuration variables appendonly
and appendfsync
are not supported
* on Redis OSS version 2.8.22 and later.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withCacheNodeType(String cacheNodeType) {
setCacheNodeType(cacheNodeType);
return this;
}
/**
*
* The name of the cache engine to be used for the clusters in this replication group. The value must be set to
* Redis
.
*
*
* @param engine
* The name of the cache engine to be used for the clusters in this replication group. The value must be set
* to Redis
.
*/
public void setEngine(String engine) {
this.engine = engine;
}
/**
*
* The name of the cache engine to be used for the clusters in this replication group. The value must be set to
* Redis
.
*
*
* @return The name of the cache engine to be used for the clusters in this replication group. The value must be set
* to Redis
.
*/
public String getEngine() {
return this.engine;
}
/**
*
* The name of the cache engine to be used for the clusters in this replication group. The value must be set to
* Redis
.
*
*
* @param engine
* The name of the cache engine to be used for the clusters in this replication group. The value must be set
* to Redis
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withEngine(String engine) {
setEngine(engine);
return this;
}
/**
*
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*
*
* @param engineVersion
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*/
public void setEngineVersion(String engineVersion) {
this.engineVersion = engineVersion;
}
/**
*
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*
*
* @return The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*/
public String getEngineVersion() {
return this.engineVersion;
}
/**
*
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
*
*
* @param engineVersion
* The version number of the cache engine to be used for the clusters in this replication group. 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) in the ElastiCache User Guide, 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withEngineVersion(String engineVersion) {
setEngineVersion(engineVersion);
return this;
}
/**
*
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a default
* parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*
*
* @param cacheParameterGroupName
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a
* default parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*/
public void setCacheParameterGroupName(String cacheParameterGroupName) {
this.cacheParameterGroupName = cacheParameterGroupName;
}
/**
*
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a default
* parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*
*
* @return The name of the parameter group to associate with this replication group. If this argument is omitted,
* the default cache parameter group for the specified engine is used.
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a
* default parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*/
public String getCacheParameterGroupName() {
return this.cacheParameterGroupName;
}
/**
*
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a default
* parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
*
*
* @param cacheParameterGroupName
* The name of the parameter group to associate with this replication group. If this argument is omitted, the
* default cache parameter group for the specified engine is used.
*
* If you are running Redis OSS version 3.2.4 or later, only one node group (shard), and want to use a
* default parameter group, we recommend that you specify the parameter group by name.
*
*
* -
*
* To create a Redis OSS (cluster mode disabled) replication group, use
* CacheParameterGroupName=default.redis3.2
.
*
*
* -
*
* To create a Redis OSS (cluster mode enabled) replication group, use
* CacheParameterGroupName=default.redis3.2.cluster.on
.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withCacheParameterGroupName(String cacheParameterGroupName) {
setCacheParameterGroupName(cacheParameterGroupName);
return this;
}
/**
*
* The name of the cache subnet group to be used for the replication group.
*
*
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you start
* creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*
*
* @param cacheSubnetGroupName
* The name of the cache subnet group to be used for the replication group.
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you
* start creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*/
public void setCacheSubnetGroupName(String cacheSubnetGroupName) {
this.cacheSubnetGroupName = cacheSubnetGroupName;
}
/**
*
* The name of the cache subnet group to be used for the replication group.
*
*
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you start
* creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*
*
* @return The name of the cache subnet group to be used for the replication group.
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you
* start creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*/
public String getCacheSubnetGroupName() {
return this.cacheSubnetGroupName;
}
/**
*
* The name of the cache subnet group to be used for the replication group.
*
*
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you start
* creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
*
*
* @param cacheSubnetGroupName
* The name of the cache subnet group to be used for the replication group.
*
* If you're going to launch your cluster in an Amazon VPC, you need to create a subnet group before you
* start creating a cluster. For more information, see Subnets and Subnet
* Groups.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withCacheSubnetGroupName(String cacheSubnetGroupName) {
setCacheSubnetGroupName(cacheSubnetGroupName);
return this;
}
/**
*
* A list of cache security group names to associate with this replication group.
*
*
* @return A list of cache security group names to associate with this replication group.
*/
public java.util.List getCacheSecurityGroupNames() {
if (cacheSecurityGroupNames == null) {
cacheSecurityGroupNames = new com.amazonaws.internal.SdkInternalList();
}
return cacheSecurityGroupNames;
}
/**
*
* A list of cache security group names to associate with this replication group.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to associate with this replication group.
*/
public void setCacheSecurityGroupNames(java.util.Collection cacheSecurityGroupNames) {
if (cacheSecurityGroupNames == null) {
this.cacheSecurityGroupNames = null;
return;
}
this.cacheSecurityGroupNames = new com.amazonaws.internal.SdkInternalList(cacheSecurityGroupNames);
}
/**
*
* A list of cache security group names to associate with this replication group.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setCacheSecurityGroupNames(java.util.Collection)} or
* {@link #withCacheSecurityGroupNames(java.util.Collection)} if you want to override the existing values.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to associate with this replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withCacheSecurityGroupNames(String... cacheSecurityGroupNames) {
if (this.cacheSecurityGroupNames == null) {
setCacheSecurityGroupNames(new com.amazonaws.internal.SdkInternalList(cacheSecurityGroupNames.length));
}
for (String ele : cacheSecurityGroupNames) {
this.cacheSecurityGroupNames.add(ele);
}
return this;
}
/**
*
* A list of cache security group names to associate with this replication group.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to associate with this replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withCacheSecurityGroupNames(java.util.Collection cacheSecurityGroupNames) {
setCacheSecurityGroupNames(cacheSecurityGroupNames);
return this;
}
/**
*
* One or more Amazon VPC security groups associated with this replication group.
*
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (Amazon
* VPC).
*
*
* @return One or more Amazon VPC security groups associated with this replication group.
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud
* (Amazon VPC).
*/
public java.util.List getSecurityGroupIds() {
if (securityGroupIds == null) {
securityGroupIds = new com.amazonaws.internal.SdkInternalList();
}
return securityGroupIds;
}
/**
*
* One or more Amazon VPC security groups associated with this replication group.
*
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (Amazon
* VPC).
*
*
* @param securityGroupIds
* One or more Amazon VPC security groups associated with this replication group.
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud
* (Amazon VPC).
*/
public void setSecurityGroupIds(java.util.Collection securityGroupIds) {
if (securityGroupIds == null) {
this.securityGroupIds = null;
return;
}
this.securityGroupIds = new com.amazonaws.internal.SdkInternalList(securityGroupIds);
}
/**
*
* One or more Amazon VPC security groups associated with this replication group.
*
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (Amazon
* VPC).
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param securityGroupIds
* One or more Amazon VPC security groups associated with this replication group.
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud
* (Amazon VPC).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSecurityGroupIds(String... securityGroupIds) {
if (this.securityGroupIds == null) {
setSecurityGroupIds(new com.amazonaws.internal.SdkInternalList(securityGroupIds.length));
}
for (String ele : securityGroupIds) {
this.securityGroupIds.add(ele);
}
return this;
}
/**
*
* One or more Amazon VPC security groups associated with this replication group.
*
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (Amazon
* VPC).
*
*
* @param securityGroupIds
* One or more Amazon VPC security groups associated with this replication group.
*
* Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud
* (Amazon VPC).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSecurityGroupIds(java.util.Collection securityGroupIds) {
setSecurityGroupIds(securityGroupIds);
return this;
}
/**
*
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*
*
* @return A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*
*
* @param tags
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new com.amazonaws.internal.SdkInternalList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
*
*
* @param tags
* A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=
* myKey
, Value=myKeyValue
. You can include multiple tags as shown following: Key=
* myKey
, Value=myKeyValue
Key=mySecondKey
, Value=
* mySecondKeyValue
. Tags on replication groups will be replicated to all nodes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
*
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in Amazon
* S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in the ARN
* cannot contain any commas. The new replication group will have the number of node groups (console: shards)
* specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*
*
* @return A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in
* Amazon S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name
* in the ARN cannot contain any commas. The new replication group will have the number of node groups
* (console: shards) specified by the parameter NumNodeGroups or the number of node groups configured
* by NodeGroupConfiguration regardless of the number of ARNs specified here.
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*/
public java.util.List getSnapshotArns() {
if (snapshotArns == null) {
snapshotArns = new com.amazonaws.internal.SdkInternalList();
}
return snapshotArns;
}
/**
*
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in Amazon
* S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in the ARN
* cannot contain any commas. The new replication group will have the number of node groups (console: shards)
* specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*
*
* @param snapshotArns
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in
* Amazon S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in
* the ARN cannot contain any commas. The new replication group will have the number of node groups (console:
* shards) specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*/
public void setSnapshotArns(java.util.Collection snapshotArns) {
if (snapshotArns == null) {
this.snapshotArns = null;
return;
}
this.snapshotArns = new com.amazonaws.internal.SdkInternalList(snapshotArns);
}
/**
*
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in Amazon
* S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in the ARN
* cannot contain any commas. The new replication group will have the number of node groups (console: shards)
* specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSnapshotArns(java.util.Collection)} or {@link #withSnapshotArns(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param snapshotArns
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in
* Amazon S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in
* the ARN cannot contain any commas. The new replication group will have the number of node groups (console:
* shards) specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSnapshotArns(String... snapshotArns) {
if (this.snapshotArns == null) {
setSnapshotArns(new com.amazonaws.internal.SdkInternalList(snapshotArns.length));
}
for (String ele : snapshotArns) {
this.snapshotArns.add(ele);
}
return this;
}
/**
*
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in Amazon
* S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in the ARN
* cannot contain any commas. The new replication group will have the number of node groups (console: shards)
* specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
*
*
* @param snapshotArns
* A list of Amazon Resource Names (ARN) that uniquely identify the Redis OSS RDB snapshot files stored in
* Amazon S3. The snapshot files are used to populate the new replication group. The Amazon S3 object name in
* the ARN cannot contain any commas. The new replication group will have the number of node groups (console:
* shards) specified by the parameter NumNodeGroups or the number of node groups configured by
* NodeGroupConfiguration regardless of the number of ARNs specified here.
*
* Example of an Amazon S3 ARN: arn:aws:s3:::my_bucket/snapshot1.rdb
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSnapshotArns(java.util.Collection snapshotArns) {
setSnapshotArns(snapshotArns);
return this;
}
/**
*
* The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to
* restoring
while the new replication group is being created.
*
*
* @param snapshotName
* The name of a snapshot from which to restore data into the new replication group. The snapshot status
* changes to restoring
while the new replication group is being created.
*/
public void setSnapshotName(String snapshotName) {
this.snapshotName = snapshotName;
}
/**
*
* The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to
* restoring
while the new replication group is being created.
*
*
* @return The name of a snapshot from which to restore data into the new replication group. The snapshot status
* changes to restoring
while the new replication group is being created.
*/
public String getSnapshotName() {
return this.snapshotName;
}
/**
*
* The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to
* restoring
while the new replication group is being created.
*
*
* @param snapshotName
* The name of a snapshot from which to restore data into the new replication group. The snapshot status
* changes to restoring
while the new replication group is being created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSnapshotName(String snapshotName) {
setSnapshotName(snapshotName);
return this;
}
/**
*
* 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
*
*
* @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
*/
public void setPreferredMaintenanceWindow(String preferredMaintenanceWindow) {
this.preferredMaintenanceWindow = 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
*
*
* @return 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
*/
public String getPreferredMaintenanceWindow() {
return this.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
*
*
* @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
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withPreferredMaintenanceWindow(String preferredMaintenanceWindow) {
setPreferredMaintenanceWindow(preferredMaintenanceWindow);
return this;
}
/**
*
* The port number on which each member of the replication group accepts connections.
*
*
* @param port
* The port number on which each member of the replication group accepts connections.
*/
public void setPort(Integer port) {
this.port = port;
}
/**
*
* The port number on which each member of the replication group accepts connections.
*
*
* @return The port number on which each member of the replication group accepts connections.
*/
public Integer getPort() {
return this.port;
}
/**
*
* The port number on which each member of the replication group accepts connections.
*
*
* @param port
* The port number on which each member of the replication group accepts connections.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withPort(Integer port) {
setPort(port);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are
* sent.
*
*
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*
*
* @param notificationTopicArn
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which
* notifications are sent.
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*/
public void setNotificationTopicArn(String notificationTopicArn) {
this.notificationTopicArn = notificationTopicArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are
* sent.
*
*
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*
*
* @return The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which
* notifications are sent.
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*/
public String getNotificationTopicArn() {
return this.notificationTopicArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are
* sent.
*
*
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
*
*
* @param notificationTopicArn
* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which
* notifications are sent.
*
* The Amazon SNS topic owner must be the same as the cluster owner.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withNotificationTopicArn(String notificationTopicArn) {
setNotificationTopicArn(notificationTopicArn);
return this;
}
/**
*
* If you are running 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.
*
*
* @param autoMinorVersionUpgrade
* If you are running 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.
*/
public void setAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
this.autoMinorVersionUpgrade = autoMinorVersionUpgrade;
}
/**
*
* If you are running 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.
*
*
* @return If you are running 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.
*/
public Boolean getAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* If you are running 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.
*
*
* @param autoMinorVersionUpgrade
* If you are running 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
setAutoMinorVersionUpgrade(autoMinorVersionUpgrade);
return this;
}
/**
*
* If you are running 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.
*
*
* @return If you are running 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.
*/
public Boolean isAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* The number of days for which ElastiCache retains automatic 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.
*
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*
*
* @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 that was taken today is retained for 5 days
* before being deleted.
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*/
public void setSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
this.snapshotRetentionLimit = snapshotRetentionLimit;
}
/**
*
* The number of days for which ElastiCache retains automatic 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.
*
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*
*
* @return The number of days for which ElastiCache retains automatic 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.
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*/
public Integer getSnapshotRetentionLimit() {
return this.snapshotRetentionLimit;
}
/**
*
* The number of days for which ElastiCache retains automatic 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.
*
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
*
*
* @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 that was taken today is retained for 5 days
* before being deleted.
*
* Default: 0 (i.e., automatic backups are disabled for this cluster).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
setSnapshotRetentionLimit(snapshotRetentionLimit);
return this;
}
/**
*
* 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.
*
*
* @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.
*/
public void setSnapshotWindow(String snapshotWindow) {
this.snapshotWindow = 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.
*
*
* @return 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.
*/
public String getSnapshotWindow() {
return this.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.
*
*
* @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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withSnapshotWindow(String snapshotWindow) {
setSnapshotWindow(snapshotWindow);
return this;
}
/**
*
* Reserved parameter. The password used to access a password protected server.
*
*
* AuthToken
can be specified only on replication groups where TransitEncryptionEnabled
is
* true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*
*
* @param authToken
* Reserved parameter. The password used to access a password protected server.
*
* AuthToken
can be specified only on replication groups where
* TransitEncryptionEnabled
is true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*/
public void setAuthToken(String authToken) {
this.authToken = authToken;
}
/**
*
* Reserved parameter. The password used to access a password protected server.
*
*
* AuthToken
can be specified only on replication groups where TransitEncryptionEnabled
is
* true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*
*
* @return Reserved parameter. The password used to access a password protected server.
*
* AuthToken
can be specified only on replication groups where
* TransitEncryptionEnabled
is true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*/
public String getAuthToken() {
return this.authToken;
}
/**
*
* Reserved parameter. The password used to access a password protected server.
*
*
* AuthToken
can be specified only on replication groups where TransitEncryptionEnabled
is
* true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
*
*
* @param authToken
* Reserved parameter. The password used to access a password protected server.
*
* AuthToken
can be specified only on replication groups where
* TransitEncryptionEnabled
is true
.
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withAuthToken(String authToken) {
setAuthToken(authToken);
return this;
}
/**
*
* A flag that enables in-transit encryption when set to true
.
*
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is being
* created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* @param transitEncryptionEnabled
* A flag that enables in-transit encryption when set to true
.
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is
* being created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*/
public void setTransitEncryptionEnabled(Boolean transitEncryptionEnabled) {
this.transitEncryptionEnabled = transitEncryptionEnabled;
}
/**
*
* A flag that enables in-transit encryption when set to true
.
*
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is being
* created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* @return A flag that enables in-transit encryption when set to true
.
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is
* being created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*/
public Boolean getTransitEncryptionEnabled() {
return this.transitEncryptionEnabled;
}
/**
*
* A flag that enables in-transit encryption when set to true
.
*
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is being
* created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* @param transitEncryptionEnabled
* A flag that enables in-transit encryption when set to true
.
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is
* being created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withTransitEncryptionEnabled(Boolean transitEncryptionEnabled) {
setTransitEncryptionEnabled(transitEncryptionEnabled);
return this;
}
/**
*
* A flag that enables in-transit encryption when set to true
.
*
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is being
* created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*
*
* @return A flag that enables in-transit encryption when set to true
.
*
* This parameter is valid only if the Engine
parameter is redis
, the
* EngineVersion
parameter is 3.2.6
, 4.x
or later, and the cluster is
* being created in an Amazon VPC.
*
*
* If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup
.
*
*
* 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
*
*
*
* For HIPAA compliance, you must specify TransitEncryptionEnabled
as true
, an
* AuthToken
, and a CacheSubnetGroup
.
*
*/
public Boolean isTransitEncryptionEnabled() {
return this.transitEncryptionEnabled;
}
/**
*
* A flag that enables encryption at rest when set to true
.
*
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is created. To
* enable encryption at rest on a replication group you must set AtRestEncryptionEnabled
to
* true
when you create the replication group.
*
*
* 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
*
*
* @param atRestEncryptionEnabled
* A flag that enables encryption at rest when set to true
.
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is
* created. To enable encryption at rest on a replication group you must set
* AtRestEncryptionEnabled
to true
when you create the replication group.
*
*
* 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
*/
public void setAtRestEncryptionEnabled(Boolean atRestEncryptionEnabled) {
this.atRestEncryptionEnabled = atRestEncryptionEnabled;
}
/**
*
* A flag that enables encryption at rest when set to true
.
*
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is created. To
* enable encryption at rest on a replication group you must set AtRestEncryptionEnabled
to
* true
when you create the replication group.
*
*
* 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
*
*
* @return A flag that enables encryption at rest when set to true
.
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is
* created. To enable encryption at rest on a replication group you must set
* AtRestEncryptionEnabled
to true
when you create the replication group.
*
*
* 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
*/
public Boolean getAtRestEncryptionEnabled() {
return this.atRestEncryptionEnabled;
}
/**
*
* A flag that enables encryption at rest when set to true
.
*
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is created. To
* enable encryption at rest on a replication group you must set AtRestEncryptionEnabled
to
* true
when you create the replication group.
*
*
* 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
*
*
* @param atRestEncryptionEnabled
* A flag that enables encryption at rest when set to true
.
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is
* created. To enable encryption at rest on a replication group you must set
* AtRestEncryptionEnabled
to true
when you create the replication group.
*
*
* 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
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withAtRestEncryptionEnabled(Boolean atRestEncryptionEnabled) {
setAtRestEncryptionEnabled(atRestEncryptionEnabled);
return this;
}
/**
*
* A flag that enables encryption at rest when set to true
.
*
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is created. To
* enable encryption at rest on a replication group you must set AtRestEncryptionEnabled
to
* true
when you create the replication group.
*
*
* 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
*
*
* @return A flag that enables encryption at rest when set to true
.
*
* You cannot modify the value of AtRestEncryptionEnabled
after the replication group is
* created. To enable encryption at rest on a replication group you must set
* AtRestEncryptionEnabled
to true
when you create the replication group.
*
*
* 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
*/
public Boolean isAtRestEncryptionEnabled() {
return this.atRestEncryptionEnabled;
}
/**
*
* The ID of the KMS key used to encrypt the disk in the cluster.
*
*
* @param kmsKeyId
* The ID of the KMS key used to encrypt the disk in the cluster.
*/
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the disk in the cluster.
*
*
* @return The ID of the KMS key used to encrypt the disk in the cluster.
*/
public String getKmsKeyId() {
return this.kmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the disk in the cluster.
*
*
* @param kmsKeyId
* The ID of the KMS key used to encrypt the disk in the cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withKmsKeyId(String kmsKeyId) {
setKmsKeyId(kmsKeyId);
return this;
}
/**
*
* The user group to associate with the replication group.
*
*
* @return The user group to associate with the replication group.
*/
public java.util.List getUserGroupIds() {
if (userGroupIds == null) {
userGroupIds = new com.amazonaws.internal.SdkInternalList();
}
return userGroupIds;
}
/**
*
* The user group to associate with the replication group.
*
*
* @param userGroupIds
* The user group to associate with the replication group.
*/
public void setUserGroupIds(java.util.Collection userGroupIds) {
if (userGroupIds == null) {
this.userGroupIds = null;
return;
}
this.userGroupIds = new com.amazonaws.internal.SdkInternalList(userGroupIds);
}
/**
*
* The user group to associate with the replication group.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setUserGroupIds(java.util.Collection)} or {@link #withUserGroupIds(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param userGroupIds
* The user group to associate with the replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withUserGroupIds(String... userGroupIds) {
if (this.userGroupIds == null) {
setUserGroupIds(new com.amazonaws.internal.SdkInternalList(userGroupIds.length));
}
for (String ele : userGroupIds) {
this.userGroupIds.add(ele);
}
return this;
}
/**
*
* The user group to associate with the replication group.
*
*
* @param userGroupIds
* The user group to associate with the replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withUserGroupIds(java.util.Collection userGroupIds) {
setUserGroupIds(userGroupIds);
return this;
}
/**
*
* Specifies the destination, format and type of the logs.
*
*
* @return Specifies the destination, format and type of the logs.
*/
public java.util.List getLogDeliveryConfigurations() {
if (logDeliveryConfigurations == null) {
logDeliveryConfigurations = new com.amazonaws.internal.SdkInternalList();
}
return logDeliveryConfigurations;
}
/**
*
* Specifies the destination, format and type of the logs.
*
*
* @param logDeliveryConfigurations
* Specifies the destination, format and type of the logs.
*/
public void setLogDeliveryConfigurations(java.util.Collection logDeliveryConfigurations) {
if (logDeliveryConfigurations == null) {
this.logDeliveryConfigurations = null;
return;
}
this.logDeliveryConfigurations = new com.amazonaws.internal.SdkInternalList(logDeliveryConfigurations);
}
/**
*
* Specifies the destination, format and type of the logs.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setLogDeliveryConfigurations(java.util.Collection)} or
* {@link #withLogDeliveryConfigurations(java.util.Collection)} if you want to override the existing values.
*
*
* @param logDeliveryConfigurations
* Specifies the destination, format and type of the logs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withLogDeliveryConfigurations(LogDeliveryConfigurationRequest... logDeliveryConfigurations) {
if (this.logDeliveryConfigurations == null) {
setLogDeliveryConfigurations(new com.amazonaws.internal.SdkInternalList(logDeliveryConfigurations.length));
}
for (LogDeliveryConfigurationRequest ele : logDeliveryConfigurations) {
this.logDeliveryConfigurations.add(ele);
}
return this;
}
/**
*
* Specifies the destination, format and type of the logs.
*
*
* @param logDeliveryConfigurations
* Specifies the destination, format and type of the logs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withLogDeliveryConfigurations(java.util.Collection logDeliveryConfigurations) {
setLogDeliveryConfigurations(logDeliveryConfigurations);
return this;
}
/**
*
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*
*
* @param dataTieringEnabled
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*/
public void setDataTieringEnabled(Boolean dataTieringEnabled) {
this.dataTieringEnabled = dataTieringEnabled;
}
/**
*
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*
*
* @return Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type.
* This parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*/
public Boolean getDataTieringEnabled() {
return this.dataTieringEnabled;
}
/**
*
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*
*
* @param dataTieringEnabled
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withDataTieringEnabled(Boolean dataTieringEnabled) {
setDataTieringEnabled(dataTieringEnabled);
return this;
}
/**
*
* Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This
* parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*
*
* @return Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type.
* This parameter must be set to true when using r6gd nodes. For more information, see Data tiering.
*/
public Boolean isDataTieringEnabled() {
return this.dataTieringEnabled;
}
/**
*
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for workloads
* using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
*
*
* @param networkType
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for
* workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances
* built on the Nitro system.
* @see NetworkType
*/
public void setNetworkType(String networkType) {
this.networkType = networkType;
}
/**
*
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for workloads
* using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
*
*
* @return Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for
* workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances
* built on the Nitro system.
* @see NetworkType
*/
public String getNetworkType() {
return this.networkType;
}
/**
*
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for workloads
* using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
*
*
* @param networkType
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for
* workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances
* built on the Nitro system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see NetworkType
*/
public CreateReplicationGroupRequest withNetworkType(String networkType) {
setNetworkType(networkType);
return this;
}
/**
*
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for workloads
* using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
*
*
* @param networkType
* Must be either ipv4
| ipv6
| dual_stack
. IPv6 is supported for
* workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances
* built on the Nitro system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see NetworkType
*/
public CreateReplicationGroupRequest withNetworkType(NetworkType networkType) {
this.networkType = networkType.toString();
return this;
}
/**
*
* The network type you choose when creating a replication group, either ipv4
| ipv6
. IPv6
* is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all
* instances built on the Nitro system.
*
*
* @param ipDiscovery
* The network type you choose when creating a replication group, either ipv4
|
* ipv6
. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached
* engine version 1.6.6 on all instances built on the Nitro
* system.
* @see IpDiscovery
*/
public void setIpDiscovery(String ipDiscovery) {
this.ipDiscovery = ipDiscovery;
}
/**
*
* The network type you choose when creating a replication group, either ipv4
| ipv6
. IPv6
* is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all
* instances built on the Nitro system.
*
*
* @return The network type you choose when creating a replication group, either ipv4
|
* ipv6
. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached
* engine version 1.6.6 on all instances built on the Nitro
* system.
* @see IpDiscovery
*/
public String getIpDiscovery() {
return this.ipDiscovery;
}
/**
*
* The network type you choose when creating a replication group, either ipv4
| ipv6
. IPv6
* is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all
* instances built on the Nitro system.
*
*
* @param ipDiscovery
* The network type you choose when creating a replication group, either ipv4
|
* ipv6
. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached
* engine version 1.6.6 on all instances built on the Nitro
* system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see IpDiscovery
*/
public CreateReplicationGroupRequest withIpDiscovery(String ipDiscovery) {
setIpDiscovery(ipDiscovery);
return this;
}
/**
*
* The network type you choose when creating a replication group, either ipv4
| ipv6
. IPv6
* is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all
* instances built on the Nitro system.
*
*
* @param ipDiscovery
* The network type you choose when creating a replication group, either ipv4
|
* ipv6
. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached
* engine version 1.6.6 on all instances built on the Nitro
* system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see IpDiscovery
*/
public CreateReplicationGroupRequest withIpDiscovery(IpDiscovery ipDiscovery) {
this.ipDiscovery = ipDiscovery.toString();
return this;
}
/**
*
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted and
* unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires you to
* first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
*
*
* @param transitEncryptionMode
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted
* and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires
* you to first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
* @see TransitEncryptionMode
*/
public void setTransitEncryptionMode(String transitEncryptionMode) {
this.transitEncryptionMode = transitEncryptionMode;
}
/**
*
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted and
* unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires you to
* first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
*
*
* @return A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted
* and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use
* encrypted connections you can modify the value to required
to allow encrypted connections
* only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires
* you to first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
* @see TransitEncryptionMode
*/
public String getTransitEncryptionMode() {
return this.transitEncryptionMode;
}
/**
*
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted and
* unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires you to
* first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
*
*
* @param transitEncryptionMode
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted
* and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires
* you to first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitEncryptionMode
*/
public CreateReplicationGroupRequest withTransitEncryptionMode(String transitEncryptionMode) {
setTransitEncryptionMode(transitEncryptionMode);
return this;
}
/**
*
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted and
* unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires you to
* first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
*
*
* @param transitEncryptionMode
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
*
* When setting TransitEncryptionEnabled
to true
, you can set your
* TransitEncryptionMode
to preferred
in the same request, to allow both encrypted
* and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted
* connections you can modify the value to required
to allow encrypted connections only.
*
*
* Setting TransitEncryptionMode
to required
is a two-step process that requires
* you to first set the TransitEncryptionMode
to preferred
, after that you can set
* TransitEncryptionMode
to required
.
*
*
* This process will not trigger the replacement of the replication group.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitEncryptionMode
*/
public CreateReplicationGroupRequest withTransitEncryptionMode(TransitEncryptionMode transitEncryptionMode) {
this.transitEncryptionMode = transitEncryptionMode.toString();
return this;
}
/**
*
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to
* Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster
* mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster
* mode configuration and set the cluster mode to Enabled.
*
*
* @param clusterMode
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode
* to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled
* and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can
* then complete cluster mode configuration and set the cluster mode to Enabled.
* @see ClusterMode
*/
public void setClusterMode(String clusterMode) {
this.clusterMode = clusterMode;
}
/**
*
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to
* Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster
* mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster
* mode configuration and set the cluster mode to Enabled.
*
*
* @return Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode
* to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled
* and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can
* then complete cluster mode configuration and set the cluster mode to Enabled.
* @see ClusterMode
*/
public String getClusterMode() {
return this.clusterMode;
}
/**
*
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to
* Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster
* mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster
* mode configuration and set the cluster mode to Enabled.
*
*
* @param clusterMode
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode
* to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled
* and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can
* then complete cluster mode configuration and set the cluster mode to Enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ClusterMode
*/
public CreateReplicationGroupRequest withClusterMode(String clusterMode) {
setClusterMode(clusterMode);
return this;
}
/**
*
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to
* Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster
* mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster
* mode configuration and set the cluster mode to Enabled.
*
*
* @param clusterMode
* Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode
* to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled
* and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can
* then complete cluster mode configuration and set the cluster mode to Enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ClusterMode
*/
public CreateReplicationGroupRequest withClusterMode(ClusterMode clusterMode) {
this.clusterMode = clusterMode.toString();
return this;
}
/**
*
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
*
*
* @param serverlessCacheSnapshotName
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
*/
public void setServerlessCacheSnapshotName(String serverlessCacheSnapshotName) {
this.serverlessCacheSnapshotName = serverlessCacheSnapshotName;
}
/**
*
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
*
*
* @return The name of the snapshot used to create a replication group. Available for Redis OSS only.
*/
public String getServerlessCacheSnapshotName() {
return this.serverlessCacheSnapshotName;
}
/**
*
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
*
*
* @param serverlessCacheSnapshotName
* The name of the snapshot used to create a replication group. Available for Redis OSS only.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReplicationGroupRequest withServerlessCacheSnapshotName(String serverlessCacheSnapshotName) {
setServerlessCacheSnapshotName(serverlessCacheSnapshotName);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getReplicationGroupId() != null)
sb.append("ReplicationGroupId: ").append(getReplicationGroupId()).append(",");
if (getReplicationGroupDescription() != null)
sb.append("ReplicationGroupDescription: ").append(getReplicationGroupDescription()).append(",");
if (getGlobalReplicationGroupId() != null)
sb.append("GlobalReplicationGroupId: ").append(getGlobalReplicationGroupId()).append(",");
if (getPrimaryClusterId() != null)
sb.append("PrimaryClusterId: ").append(getPrimaryClusterId()).append(",");
if (getAutomaticFailoverEnabled() != null)
sb.append("AutomaticFailoverEnabled: ").append(getAutomaticFailoverEnabled()).append(",");
if (getMultiAZEnabled() != null)
sb.append("MultiAZEnabled: ").append(getMultiAZEnabled()).append(",");
if (getNumCacheClusters() != null)
sb.append("NumCacheClusters: ").append(getNumCacheClusters()).append(",");
if (getPreferredCacheClusterAZs() != null)
sb.append("PreferredCacheClusterAZs: ").append(getPreferredCacheClusterAZs()).append(",");
if (getNumNodeGroups() != null)
sb.append("NumNodeGroups: ").append(getNumNodeGroups()).append(",");
if (getReplicasPerNodeGroup() != null)
sb.append("ReplicasPerNodeGroup: ").append(getReplicasPerNodeGroup()).append(",");
if (getNodeGroupConfiguration() != null)
sb.append("NodeGroupConfiguration: ").append(getNodeGroupConfiguration()).append(",");
if (getCacheNodeType() != null)
sb.append("CacheNodeType: ").append(getCacheNodeType()).append(",");
if (getEngine() != null)
sb.append("Engine: ").append(getEngine()).append(",");
if (getEngineVersion() != null)
sb.append("EngineVersion: ").append(getEngineVersion()).append(",");
if (getCacheParameterGroupName() != null)
sb.append("CacheParameterGroupName: ").append(getCacheParameterGroupName()).append(",");
if (getCacheSubnetGroupName() != null)
sb.append("CacheSubnetGroupName: ").append(getCacheSubnetGroupName()).append(",");
if (getCacheSecurityGroupNames() != null)
sb.append("CacheSecurityGroupNames: ").append(getCacheSecurityGroupNames()).append(",");
if (getSecurityGroupIds() != null)
sb.append("SecurityGroupIds: ").append(getSecurityGroupIds()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getSnapshotArns() != null)
sb.append("SnapshotArns: ").append(getSnapshotArns()).append(",");
if (getSnapshotName() != null)
sb.append("SnapshotName: ").append(getSnapshotName()).append(",");
if (getPreferredMaintenanceWindow() != null)
sb.append("PreferredMaintenanceWindow: ").append(getPreferredMaintenanceWindow()).append(",");
if (getPort() != null)
sb.append("Port: ").append(getPort()).append(",");
if (getNotificationTopicArn() != null)
sb.append("NotificationTopicArn: ").append(getNotificationTopicArn()).append(",");
if (getAutoMinorVersionUpgrade() != null)
sb.append("AutoMinorVersionUpgrade: ").append(getAutoMinorVersionUpgrade()).append(",");
if (getSnapshotRetentionLimit() != null)
sb.append("SnapshotRetentionLimit: ").append(getSnapshotRetentionLimit()).append(",");
if (getSnapshotWindow() != null)
sb.append("SnapshotWindow: ").append(getSnapshotWindow()).append(",");
if (getAuthToken() != null)
sb.append("AuthToken: ").append(getAuthToken()).append(",");
if (getTransitEncryptionEnabled() != null)
sb.append("TransitEncryptionEnabled: ").append(getTransitEncryptionEnabled()).append(",");
if (getAtRestEncryptionEnabled() != null)
sb.append("AtRestEncryptionEnabled: ").append(getAtRestEncryptionEnabled()).append(",");
if (getKmsKeyId() != null)
sb.append("KmsKeyId: ").append(getKmsKeyId()).append(",");
if (getUserGroupIds() != null)
sb.append("UserGroupIds: ").append(getUserGroupIds()).append(",");
if (getLogDeliveryConfigurations() != null)
sb.append("LogDeliveryConfigurations: ").append(getLogDeliveryConfigurations()).append(",");
if (getDataTieringEnabled() != null)
sb.append("DataTieringEnabled: ").append(getDataTieringEnabled()).append(",");
if (getNetworkType() != null)
sb.append("NetworkType: ").append(getNetworkType()).append(",");
if (getIpDiscovery() != null)
sb.append("IpDiscovery: ").append(getIpDiscovery()).append(",");
if (getTransitEncryptionMode() != null)
sb.append("TransitEncryptionMode: ").append(getTransitEncryptionMode()).append(",");
if (getClusterMode() != null)
sb.append("ClusterMode: ").append(getClusterMode()).append(",");
if (getServerlessCacheSnapshotName() != null)
sb.append("ServerlessCacheSnapshotName: ").append(getServerlessCacheSnapshotName());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateReplicationGroupRequest == false)
return false;
CreateReplicationGroupRequest other = (CreateReplicationGroupRequest) obj;
if (other.getReplicationGroupId() == null ^ this.getReplicationGroupId() == null)
return false;
if (other.getReplicationGroupId() != null && other.getReplicationGroupId().equals(this.getReplicationGroupId()) == false)
return false;
if (other.getReplicationGroupDescription() == null ^ this.getReplicationGroupDescription() == null)
return false;
if (other.getReplicationGroupDescription() != null && other.getReplicationGroupDescription().equals(this.getReplicationGroupDescription()) == false)
return false;
if (other.getGlobalReplicationGroupId() == null ^ this.getGlobalReplicationGroupId() == null)
return false;
if (other.getGlobalReplicationGroupId() != null && other.getGlobalReplicationGroupId().equals(this.getGlobalReplicationGroupId()) == false)
return false;
if (other.getPrimaryClusterId() == null ^ this.getPrimaryClusterId() == null)
return false;
if (other.getPrimaryClusterId() != null && other.getPrimaryClusterId().equals(this.getPrimaryClusterId()) == false)
return false;
if (other.getAutomaticFailoverEnabled() == null ^ this.getAutomaticFailoverEnabled() == null)
return false;
if (other.getAutomaticFailoverEnabled() != null && other.getAutomaticFailoverEnabled().equals(this.getAutomaticFailoverEnabled()) == false)
return false;
if (other.getMultiAZEnabled() == null ^ this.getMultiAZEnabled() == null)
return false;
if (other.getMultiAZEnabled() != null && other.getMultiAZEnabled().equals(this.getMultiAZEnabled()) == false)
return false;
if (other.getNumCacheClusters() == null ^ this.getNumCacheClusters() == null)
return false;
if (other.getNumCacheClusters() != null && other.getNumCacheClusters().equals(this.getNumCacheClusters()) == false)
return false;
if (other.getPreferredCacheClusterAZs() == null ^ this.getPreferredCacheClusterAZs() == null)
return false;
if (other.getPreferredCacheClusterAZs() != null && other.getPreferredCacheClusterAZs().equals(this.getPreferredCacheClusterAZs()) == false)
return false;
if (other.getNumNodeGroups() == null ^ this.getNumNodeGroups() == null)
return false;
if (other.getNumNodeGroups() != null && other.getNumNodeGroups().equals(this.getNumNodeGroups()) == false)
return false;
if (other.getReplicasPerNodeGroup() == null ^ this.getReplicasPerNodeGroup() == null)
return false;
if (other.getReplicasPerNodeGroup() != null && other.getReplicasPerNodeGroup().equals(this.getReplicasPerNodeGroup()) == false)
return false;
if (other.getNodeGroupConfiguration() == null ^ this.getNodeGroupConfiguration() == null)
return false;
if (other.getNodeGroupConfiguration() != null && other.getNodeGroupConfiguration().equals(this.getNodeGroupConfiguration()) == false)
return false;
if (other.getCacheNodeType() == null ^ this.getCacheNodeType() == null)
return false;
if (other.getCacheNodeType() != null && other.getCacheNodeType().equals(this.getCacheNodeType()) == false)
return false;
if (other.getEngine() == null ^ this.getEngine() == null)
return false;
if (other.getEngine() != null && other.getEngine().equals(this.getEngine()) == false)
return false;
if (other.getEngineVersion() == null ^ this.getEngineVersion() == null)
return false;
if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false)
return false;
if (other.getCacheParameterGroupName() == null ^ this.getCacheParameterGroupName() == null)
return false;
if (other.getCacheParameterGroupName() != null && other.getCacheParameterGroupName().equals(this.getCacheParameterGroupName()) == false)
return false;
if (other.getCacheSubnetGroupName() == null ^ this.getCacheSubnetGroupName() == null)
return false;
if (other.getCacheSubnetGroupName() != null && other.getCacheSubnetGroupName().equals(this.getCacheSubnetGroupName()) == false)
return false;
if (other.getCacheSecurityGroupNames() == null ^ this.getCacheSecurityGroupNames() == null)
return false;
if (other.getCacheSecurityGroupNames() != null && other.getCacheSecurityGroupNames().equals(this.getCacheSecurityGroupNames()) == false)
return false;
if (other.getSecurityGroupIds() == null ^ this.getSecurityGroupIds() == null)
return false;
if (other.getSecurityGroupIds() != null && other.getSecurityGroupIds().equals(this.getSecurityGroupIds()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getSnapshotArns() == null ^ this.getSnapshotArns() == null)
return false;
if (other.getSnapshotArns() != null && other.getSnapshotArns().equals(this.getSnapshotArns()) == false)
return false;
if (other.getSnapshotName() == null ^ this.getSnapshotName() == null)
return false;
if (other.getSnapshotName() != null && other.getSnapshotName().equals(this.getSnapshotName()) == false)
return false;
if (other.getPreferredMaintenanceWindow() == null ^ this.getPreferredMaintenanceWindow() == null)
return false;
if (other.getPreferredMaintenanceWindow() != null && other.getPreferredMaintenanceWindow().equals(this.getPreferredMaintenanceWindow()) == false)
return false;
if (other.getPort() == null ^ this.getPort() == null)
return false;
if (other.getPort() != null && other.getPort().equals(this.getPort()) == false)
return false;
if (other.getNotificationTopicArn() == null ^ this.getNotificationTopicArn() == null)
return false;
if (other.getNotificationTopicArn() != null && other.getNotificationTopicArn().equals(this.getNotificationTopicArn()) == false)
return false;
if (other.getAutoMinorVersionUpgrade() == null ^ this.getAutoMinorVersionUpgrade() == null)
return false;
if (other.getAutoMinorVersionUpgrade() != null && other.getAutoMinorVersionUpgrade().equals(this.getAutoMinorVersionUpgrade()) == false)
return false;
if (other.getSnapshotRetentionLimit() == null ^ this.getSnapshotRetentionLimit() == null)
return false;
if (other.getSnapshotRetentionLimit() != null && other.getSnapshotRetentionLimit().equals(this.getSnapshotRetentionLimit()) == false)
return false;
if (other.getSnapshotWindow() == null ^ this.getSnapshotWindow() == null)
return false;
if (other.getSnapshotWindow() != null && other.getSnapshotWindow().equals(this.getSnapshotWindow()) == false)
return false;
if (other.getAuthToken() == null ^ this.getAuthToken() == null)
return false;
if (other.getAuthToken() != null && other.getAuthToken().equals(this.getAuthToken()) == false)
return false;
if (other.getTransitEncryptionEnabled() == null ^ this.getTransitEncryptionEnabled() == null)
return false;
if (other.getTransitEncryptionEnabled() != null && other.getTransitEncryptionEnabled().equals(this.getTransitEncryptionEnabled()) == false)
return false;
if (other.getAtRestEncryptionEnabled() == null ^ this.getAtRestEncryptionEnabled() == null)
return false;
if (other.getAtRestEncryptionEnabled() != null && other.getAtRestEncryptionEnabled().equals(this.getAtRestEncryptionEnabled()) == false)
return false;
if (other.getKmsKeyId() == null ^ this.getKmsKeyId() == null)
return false;
if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == false)
return false;
if (other.getUserGroupIds() == null ^ this.getUserGroupIds() == null)
return false;
if (other.getUserGroupIds() != null && other.getUserGroupIds().equals(this.getUserGroupIds()) == false)
return false;
if (other.getLogDeliveryConfigurations() == null ^ this.getLogDeliveryConfigurations() == null)
return false;
if (other.getLogDeliveryConfigurations() != null && other.getLogDeliveryConfigurations().equals(this.getLogDeliveryConfigurations()) == false)
return false;
if (other.getDataTieringEnabled() == null ^ this.getDataTieringEnabled() == null)
return false;
if (other.getDataTieringEnabled() != null && other.getDataTieringEnabled().equals(this.getDataTieringEnabled()) == false)
return false;
if (other.getNetworkType() == null ^ this.getNetworkType() == null)
return false;
if (other.getNetworkType() != null && other.getNetworkType().equals(this.getNetworkType()) == false)
return false;
if (other.getIpDiscovery() == null ^ this.getIpDiscovery() == null)
return false;
if (other.getIpDiscovery() != null && other.getIpDiscovery().equals(this.getIpDiscovery()) == false)
return false;
if (other.getTransitEncryptionMode() == null ^ this.getTransitEncryptionMode() == null)
return false;
if (other.getTransitEncryptionMode() != null && other.getTransitEncryptionMode().equals(this.getTransitEncryptionMode()) == false)
return false;
if (other.getClusterMode() == null ^ this.getClusterMode() == null)
return false;
if (other.getClusterMode() != null && other.getClusterMode().equals(this.getClusterMode()) == false)
return false;
if (other.getServerlessCacheSnapshotName() == null ^ this.getServerlessCacheSnapshotName() == null)
return false;
if (other.getServerlessCacheSnapshotName() != null && other.getServerlessCacheSnapshotName().equals(this.getServerlessCacheSnapshotName()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getReplicationGroupId() == null) ? 0 : getReplicationGroupId().hashCode());
hashCode = prime * hashCode + ((getReplicationGroupDescription() == null) ? 0 : getReplicationGroupDescription().hashCode());
hashCode = prime * hashCode + ((getGlobalReplicationGroupId() == null) ? 0 : getGlobalReplicationGroupId().hashCode());
hashCode = prime * hashCode + ((getPrimaryClusterId() == null) ? 0 : getPrimaryClusterId().hashCode());
hashCode = prime * hashCode + ((getAutomaticFailoverEnabled() == null) ? 0 : getAutomaticFailoverEnabled().hashCode());
hashCode = prime * hashCode + ((getMultiAZEnabled() == null) ? 0 : getMultiAZEnabled().hashCode());
hashCode = prime * hashCode + ((getNumCacheClusters() == null) ? 0 : getNumCacheClusters().hashCode());
hashCode = prime * hashCode + ((getPreferredCacheClusterAZs() == null) ? 0 : getPreferredCacheClusterAZs().hashCode());
hashCode = prime * hashCode + ((getNumNodeGroups() == null) ? 0 : getNumNodeGroups().hashCode());
hashCode = prime * hashCode + ((getReplicasPerNodeGroup() == null) ? 0 : getReplicasPerNodeGroup().hashCode());
hashCode = prime * hashCode + ((getNodeGroupConfiguration() == null) ? 0 : getNodeGroupConfiguration().hashCode());
hashCode = prime * hashCode + ((getCacheNodeType() == null) ? 0 : getCacheNodeType().hashCode());
hashCode = prime * hashCode + ((getEngine() == null) ? 0 : getEngine().hashCode());
hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode());
hashCode = prime * hashCode + ((getCacheParameterGroupName() == null) ? 0 : getCacheParameterGroupName().hashCode());
hashCode = prime * hashCode + ((getCacheSubnetGroupName() == null) ? 0 : getCacheSubnetGroupName().hashCode());
hashCode = prime * hashCode + ((getCacheSecurityGroupNames() == null) ? 0 : getCacheSecurityGroupNames().hashCode());
hashCode = prime * hashCode + ((getSecurityGroupIds() == null) ? 0 : getSecurityGroupIds().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getSnapshotArns() == null) ? 0 : getSnapshotArns().hashCode());
hashCode = prime * hashCode + ((getSnapshotName() == null) ? 0 : getSnapshotName().hashCode());
hashCode = prime * hashCode + ((getPreferredMaintenanceWindow() == null) ? 0 : getPreferredMaintenanceWindow().hashCode());
hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode());
hashCode = prime * hashCode + ((getNotificationTopicArn() == null) ? 0 : getNotificationTopicArn().hashCode());
hashCode = prime * hashCode + ((getAutoMinorVersionUpgrade() == null) ? 0 : getAutoMinorVersionUpgrade().hashCode());
hashCode = prime * hashCode + ((getSnapshotRetentionLimit() == null) ? 0 : getSnapshotRetentionLimit().hashCode());
hashCode = prime * hashCode + ((getSnapshotWindow() == null) ? 0 : getSnapshotWindow().hashCode());
hashCode = prime * hashCode + ((getAuthToken() == null) ? 0 : getAuthToken().hashCode());
hashCode = prime * hashCode + ((getTransitEncryptionEnabled() == null) ? 0 : getTransitEncryptionEnabled().hashCode());
hashCode = prime * hashCode + ((getAtRestEncryptionEnabled() == null) ? 0 : getAtRestEncryptionEnabled().hashCode());
hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode());
hashCode = prime * hashCode + ((getUserGroupIds() == null) ? 0 : getUserGroupIds().hashCode());
hashCode = prime * hashCode + ((getLogDeliveryConfigurations() == null) ? 0 : getLogDeliveryConfigurations().hashCode());
hashCode = prime * hashCode + ((getDataTieringEnabled() == null) ? 0 : getDataTieringEnabled().hashCode());
hashCode = prime * hashCode + ((getNetworkType() == null) ? 0 : getNetworkType().hashCode());
hashCode = prime * hashCode + ((getIpDiscovery() == null) ? 0 : getIpDiscovery().hashCode());
hashCode = prime * hashCode + ((getTransitEncryptionMode() == null) ? 0 : getTransitEncryptionMode().hashCode());
hashCode = prime * hashCode + ((getClusterMode() == null) ? 0 : getClusterMode().hashCode());
hashCode = prime * hashCode + ((getServerlessCacheSnapshotName() == null) ? 0 : getServerlessCacheSnapshotName().hashCode());
return hashCode;
}
@Override
public CreateReplicationGroupRequest clone() {
return (CreateReplicationGroupRequest) super.clone();
}
}