com.amazonaws.services.elasticache.model.Snapshot 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;
/**
*
* Represents a copy of an entire Redis OSS cluster as of the time when the snapshot was taken.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Snapshot implements Serializable, Cloneable {
/**
*
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot, this is
* the user-provided name.
*
*/
private String snapshotName;
/**
*
* The unique identifier of the source replication group.
*
*/
private String replicationGroupId;
/**
*
* A description of the source replication group.
*
*/
private String replicationGroupDescription;
/**
*
* The user-supplied identifier of the source cluster.
*
*/
private String cacheClusterId;
/**
*
* The status of the snapshot. Valid values: creating
| available
| restoring
* | copying
| deleting
.
*
*/
private String snapshotStatus;
/**
*
* Indicates whether the snapshot is from an automatic backup (automated
) or was created manually (
* manual
).
*
*/
private String snapshotSource;
/**
*
* The name of the compute and memory capacity node type for the source cluster.
*
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types provide
* more memory and computational power at lower cost when compared to their equivalent previous generation
* counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 (memcached
or redis
) used by the source cluster.
*
*/
private String engine;
/**
*
* The version of the cache engine version that is used by the source cluster.
*
*/
private String engineVersion;
/**
*
* The number of cache nodes in the source cluster.
*
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between
* 1 and 40.
*
*/
private Integer numCacheNodes;
/**
*
* The name of the Availability Zone in which the source cluster is located.
*
*/
private String preferredAvailabilityZone;
/**
*
* The ARN (Amazon Resource Name) of the preferred outpost.
*
*/
private String preferredOutpostArn;
/**
*
* The date and time when the source cluster was created.
*
*/
private java.util.Date cacheClusterCreateTime;
/**
*
* 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 Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*
*/
private String topicArn;
/**
*
* The port number used by each cache nodes in the source cluster.
*
*/
private Integer port;
/**
*
* The cache parameter group that is associated with the source cluster.
*
*/
private String cacheParameterGroupName;
/**
*
* The name of the cache subnet group associated with the source cluster.
*
*/
private String cacheSubnetGroupName;
/**
*
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*
*/
private String vpcId;
/**
*
* 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;
/**
*
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting it.
*
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster when the
* snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can only be deleted
* using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*/
private Integer snapshotRetentionLimit;
/**
*
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*
*/
private String snapshotWindow;
/**
*
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node groups
* (shards) in the snapshot and in the restored replication group must be the same.
*
*/
private Integer numNodeGroups;
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*/
private String automaticFailover;
/**
*
* A list of the cache nodes in the source cluster.
*
*/
private com.amazonaws.internal.SdkInternalList nodeSnapshots;
/**
*
* The ID of the KMS key used to encrypt the snapshot.
*
*/
private String kmsKeyId;
/**
*
* The ARN (Amazon Resource Name) of the snapshot.
*
*/
private String aRN;
/**
*
* 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 String dataTiering;
/**
*
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot, this is
* the user-provided name.
*
*
* @param snapshotName
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot,
* this is the user-provided name.
*/
public void setSnapshotName(String snapshotName) {
this.snapshotName = snapshotName;
}
/**
*
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot, this is
* the user-provided name.
*
*
* @return The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot,
* this is the user-provided name.
*/
public String getSnapshotName() {
return this.snapshotName;
}
/**
*
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot, this is
* the user-provided name.
*
*
* @param snapshotName
* The name of a snapshot. For an automatic snapshot, the name is system-generated. For a manual snapshot,
* this is the user-provided name.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotName(String snapshotName) {
setSnapshotName(snapshotName);
return this;
}
/**
*
* The unique identifier of the source replication group.
*
*
* @param replicationGroupId
* The unique identifier of the source replication group.
*/
public void setReplicationGroupId(String replicationGroupId) {
this.replicationGroupId = replicationGroupId;
}
/**
*
* The unique identifier of the source replication group.
*
*
* @return The unique identifier of the source replication group.
*/
public String getReplicationGroupId() {
return this.replicationGroupId;
}
/**
*
* The unique identifier of the source replication group.
*
*
* @param replicationGroupId
* The unique identifier of the source replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withReplicationGroupId(String replicationGroupId) {
setReplicationGroupId(replicationGroupId);
return this;
}
/**
*
* A description of the source replication group.
*
*
* @param replicationGroupDescription
* A description of the source replication group.
*/
public void setReplicationGroupDescription(String replicationGroupDescription) {
this.replicationGroupDescription = replicationGroupDescription;
}
/**
*
* A description of the source replication group.
*
*
* @return A description of the source replication group.
*/
public String getReplicationGroupDescription() {
return this.replicationGroupDescription;
}
/**
*
* A description of the source replication group.
*
*
* @param replicationGroupDescription
* A description of the source replication group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withReplicationGroupDescription(String replicationGroupDescription) {
setReplicationGroupDescription(replicationGroupDescription);
return this;
}
/**
*
* The user-supplied identifier of the source cluster.
*
*
* @param cacheClusterId
* The user-supplied identifier of the source cluster.
*/
public void setCacheClusterId(String cacheClusterId) {
this.cacheClusterId = cacheClusterId;
}
/**
*
* The user-supplied identifier of the source cluster.
*
*
* @return The user-supplied identifier of the source cluster.
*/
public String getCacheClusterId() {
return this.cacheClusterId;
}
/**
*
* The user-supplied identifier of the source cluster.
*
*
* @param cacheClusterId
* The user-supplied identifier of the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withCacheClusterId(String cacheClusterId) {
setCacheClusterId(cacheClusterId);
return this;
}
/**
*
* The status of the snapshot. Valid values: creating
| available
| restoring
* | copying
| deleting
.
*
*
* @param snapshotStatus
* The status of the snapshot. Valid values: creating
| available
|
* restoring
| copying
| deleting
.
*/
public void setSnapshotStatus(String snapshotStatus) {
this.snapshotStatus = snapshotStatus;
}
/**
*
* The status of the snapshot. Valid values: creating
| available
| restoring
* | copying
| deleting
.
*
*
* @return The status of the snapshot. Valid values: creating
| available
|
* restoring
| copying
| deleting
.
*/
public String getSnapshotStatus() {
return this.snapshotStatus;
}
/**
*
* The status of the snapshot. Valid values: creating
| available
| restoring
* | copying
| deleting
.
*
*
* @param snapshotStatus
* The status of the snapshot. Valid values: creating
| available
|
* restoring
| copying
| deleting
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotStatus(String snapshotStatus) {
setSnapshotStatus(snapshotStatus);
return this;
}
/**
*
* Indicates whether the snapshot is from an automatic backup (automated
) or was created manually (
* manual
).
*
*
* @param snapshotSource
* Indicates whether the snapshot is from an automatic backup (automated
) or was created
* manually (manual
).
*/
public void setSnapshotSource(String snapshotSource) {
this.snapshotSource = snapshotSource;
}
/**
*
* Indicates whether the snapshot is from an automatic backup (automated
) or was created manually (
* manual
).
*
*
* @return Indicates whether the snapshot is from an automatic backup (automated
) or was created
* manually (manual
).
*/
public String getSnapshotSource() {
return this.snapshotSource;
}
/**
*
* Indicates whether the snapshot is from an automatic backup (automated
) or was created manually (
* manual
).
*
*
* @param snapshotSource
* Indicates whether the snapshot is from an automatic backup (automated
) or was created
* manually (manual
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotSource(String snapshotSource) {
setSnapshotSource(snapshotSource);
return this;
}
/**
*
* The name of the compute and memory capacity node type for the source cluster.
*
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types provide
* more memory and computational power at lower cost when compared to their equivalent previous generation
* counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 name of the compute and memory capacity node type for the source cluster.
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types
* provide more memory and computational power at lower cost when compared to their equivalent previous
* generation counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 name of the compute and memory capacity node type for the source cluster.
*
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types provide
* more memory and computational power at lower cost when compared to their equivalent previous generation
* counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 name of the compute and memory capacity node type for the source cluster.
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types
* provide more memory and computational power at lower cost when compared to their equivalent previous
* generation counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 name of the compute and memory capacity node type for the source cluster.
*
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types provide
* more memory and computational power at lower cost when compared to their equivalent previous generation
* counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 name of the compute and memory capacity node type for the source cluster.
*
* The following node types are supported by ElastiCache. Generally speaking, the current generation types
* provide more memory and computational power at lower cost when compared to their equivalent previous
* generation counterparts.
*
*
* -
*
* General purpose:
*
*
* -
*
* Current generation:
*
*
* M7g node types: cache.m7g.large
, cache.m7g.xlarge
,
* cache.m7g.2xlarge
, cache.m7g.4xlarge
, cache.m7g.8xlarge
,
* cache.m7g.12xlarge
, cache.m7g.16xlarge
*
*
*
* 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 Snapshot withCacheNodeType(String cacheNodeType) {
setCacheNodeType(cacheNodeType);
return this;
}
/**
*
* The name of the cache engine (memcached
or redis
) used by the source cluster.
*
*
* @param engine
* The name of the cache engine (memcached
or redis
) used by the source cluster.
*/
public void setEngine(String engine) {
this.engine = engine;
}
/**
*
* The name of the cache engine (memcached
or redis
) used by the source cluster.
*
*
* @return The name of the cache engine (memcached
or redis
) used by the source cluster.
*/
public String getEngine() {
return this.engine;
}
/**
*
* The name of the cache engine (memcached
or redis
) used by the source cluster.
*
*
* @param engine
* The name of the cache engine (memcached
or redis
) used by the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withEngine(String engine) {
setEngine(engine);
return this;
}
/**
*
* The version of the cache engine version that is used by the source cluster.
*
*
* @param engineVersion
* The version of the cache engine version that is used by the source cluster.
*/
public void setEngineVersion(String engineVersion) {
this.engineVersion = engineVersion;
}
/**
*
* The version of the cache engine version that is used by the source cluster.
*
*
* @return The version of the cache engine version that is used by the source cluster.
*/
public String getEngineVersion() {
return this.engineVersion;
}
/**
*
* The version of the cache engine version that is used by the source cluster.
*
*
* @param engineVersion
* The version of the cache engine version that is used by the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withEngineVersion(String engineVersion) {
setEngineVersion(engineVersion);
return this;
}
/**
*
* The number of cache nodes in the source cluster.
*
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between
* 1 and 40.
*
*
* @param numCacheNodes
* The number of cache nodes in the source cluster.
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be
* between 1 and 40.
*/
public void setNumCacheNodes(Integer numCacheNodes) {
this.numCacheNodes = numCacheNodes;
}
/**
*
* The number of cache nodes in the source cluster.
*
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between
* 1 and 40.
*
*
* @return The number of cache nodes in the source cluster.
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be
* between 1 and 40.
*/
public Integer getNumCacheNodes() {
return this.numCacheNodes;
}
/**
*
* The number of cache nodes in the source cluster.
*
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between
* 1 and 40.
*
*
* @param numCacheNodes
* The number of cache nodes in the source cluster.
*
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be
* between 1 and 40.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withNumCacheNodes(Integer numCacheNodes) {
setNumCacheNodes(numCacheNodes);
return this;
}
/**
*
* The name of the Availability Zone in which the source cluster is located.
*
*
* @param preferredAvailabilityZone
* The name of the Availability Zone in which the source cluster is located.
*/
public void setPreferredAvailabilityZone(String preferredAvailabilityZone) {
this.preferredAvailabilityZone = preferredAvailabilityZone;
}
/**
*
* The name of the Availability Zone in which the source cluster is located.
*
*
* @return The name of the Availability Zone in which the source cluster is located.
*/
public String getPreferredAvailabilityZone() {
return this.preferredAvailabilityZone;
}
/**
*
* The name of the Availability Zone in which the source cluster is located.
*
*
* @param preferredAvailabilityZone
* The name of the Availability Zone in which the source cluster is located.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withPreferredAvailabilityZone(String preferredAvailabilityZone) {
setPreferredAvailabilityZone(preferredAvailabilityZone);
return this;
}
/**
*
* The ARN (Amazon Resource Name) of the preferred outpost.
*
*
* @param preferredOutpostArn
* The ARN (Amazon Resource Name) of the preferred outpost.
*/
public void setPreferredOutpostArn(String preferredOutpostArn) {
this.preferredOutpostArn = preferredOutpostArn;
}
/**
*
* The ARN (Amazon Resource Name) of the preferred outpost.
*
*
* @return The ARN (Amazon Resource Name) of the preferred outpost.
*/
public String getPreferredOutpostArn() {
return this.preferredOutpostArn;
}
/**
*
* The ARN (Amazon Resource Name) of the preferred outpost.
*
*
* @param preferredOutpostArn
* The ARN (Amazon Resource Name) of the preferred outpost.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withPreferredOutpostArn(String preferredOutpostArn) {
setPreferredOutpostArn(preferredOutpostArn);
return this;
}
/**
*
* The date and time when the source cluster was created.
*
*
* @param cacheClusterCreateTime
* The date and time when the source cluster was created.
*/
public void setCacheClusterCreateTime(java.util.Date cacheClusterCreateTime) {
this.cacheClusterCreateTime = cacheClusterCreateTime;
}
/**
*
* The date and time when the source cluster was created.
*
*
* @return The date and time when the source cluster was created.
*/
public java.util.Date getCacheClusterCreateTime() {
return this.cacheClusterCreateTime;
}
/**
*
* The date and time when the source cluster was created.
*
*
* @param cacheClusterCreateTime
* The date and time when the source cluster was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withCacheClusterCreateTime(java.util.Date cacheClusterCreateTime) {
setCacheClusterCreateTime(cacheClusterCreateTime);
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 Snapshot withPreferredMaintenanceWindow(String preferredMaintenanceWindow) {
setPreferredMaintenanceWindow(preferredMaintenanceWindow);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*
*
* @param topicArn
* The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*/
public void setTopicArn(String topicArn) {
this.topicArn = topicArn;
}
/**
*
* The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*
*
* @return The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*/
public String getTopicArn() {
return this.topicArn;
}
/**
*
* The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
*
*
* @param topicArn
* The Amazon Resource Name (ARN) for the topic used by the source cluster for publishing notifications.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withTopicArn(String topicArn) {
setTopicArn(topicArn);
return this;
}
/**
*
* The port number used by each cache nodes in the source cluster.
*
*
* @param port
* The port number used by each cache nodes in the source cluster.
*/
public void setPort(Integer port) {
this.port = port;
}
/**
*
* The port number used by each cache nodes in the source cluster.
*
*
* @return The port number used by each cache nodes in the source cluster.
*/
public Integer getPort() {
return this.port;
}
/**
*
* The port number used by each cache nodes in the source cluster.
*
*
* @param port
* The port number used by each cache nodes in the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withPort(Integer port) {
setPort(port);
return this;
}
/**
*
* The cache parameter group that is associated with the source cluster.
*
*
* @param cacheParameterGroupName
* The cache parameter group that is associated with the source cluster.
*/
public void setCacheParameterGroupName(String cacheParameterGroupName) {
this.cacheParameterGroupName = cacheParameterGroupName;
}
/**
*
* The cache parameter group that is associated with the source cluster.
*
*
* @return The cache parameter group that is associated with the source cluster.
*/
public String getCacheParameterGroupName() {
return this.cacheParameterGroupName;
}
/**
*
* The cache parameter group that is associated with the source cluster.
*
*
* @param cacheParameterGroupName
* The cache parameter group that is associated with the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withCacheParameterGroupName(String cacheParameterGroupName) {
setCacheParameterGroupName(cacheParameterGroupName);
return this;
}
/**
*
* The name of the cache subnet group associated with the source cluster.
*
*
* @param cacheSubnetGroupName
* The name of the cache subnet group associated with the source cluster.
*/
public void setCacheSubnetGroupName(String cacheSubnetGroupName) {
this.cacheSubnetGroupName = cacheSubnetGroupName;
}
/**
*
* The name of the cache subnet group associated with the source cluster.
*
*
* @return The name of the cache subnet group associated with the source cluster.
*/
public String getCacheSubnetGroupName() {
return this.cacheSubnetGroupName;
}
/**
*
* The name of the cache subnet group associated with the source cluster.
*
*
* @param cacheSubnetGroupName
* The name of the cache subnet group associated with the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withCacheSubnetGroupName(String cacheSubnetGroupName) {
setCacheSubnetGroupName(cacheSubnetGroupName);
return this;
}
/**
*
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*
*
* @param vpcId
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
*
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*
*
* @return The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*/
public String getVpcId() {
return this.vpcId;
}
/**
*
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
*
*
* @param vpcId
* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withVpcId(String vpcId) {
setVpcId(vpcId);
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 Snapshot 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;
}
/**
*
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting it.
*
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster when the
* snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can only be deleted
* using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @param snapshotRetentionLimit
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting
* it.
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster
* when the snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can
* only be deleted using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*/
public void setSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
this.snapshotRetentionLimit = snapshotRetentionLimit;
}
/**
*
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting it.
*
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster when the
* snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can only be deleted
* using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @return For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting
* it.
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster
* when the snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can
* only be deleted using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*/
public Integer getSnapshotRetentionLimit() {
return this.snapshotRetentionLimit;
}
/**
*
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting it.
*
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster when the
* snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can only be deleted
* using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @param snapshotRetentionLimit
* For an automatic snapshot, the number of days for which ElastiCache retains the snapshot before deleting
* it.
*
* For manual snapshots, this field reflects the SnapshotRetentionLimit
for the source cluster
* when the snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can
* only be deleted using the DeleteSnapshot
operation.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
setSnapshotRetentionLimit(snapshotRetentionLimit);
return this;
}
/**
*
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*
*
* @param snapshotWindow
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*/
public void setSnapshotWindow(String snapshotWindow) {
this.snapshotWindow = snapshotWindow;
}
/**
*
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*
*
* @return The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*/
public String getSnapshotWindow() {
return this.snapshotWindow;
}
/**
*
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
*
*
* @param snapshotWindow
* The daily time range during which ElastiCache takes daily snapshots of the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotWindow(String snapshotWindow) {
setSnapshotWindow(snapshotWindow);
return this;
}
/**
*
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node groups
* (shards) in the snapshot and in the restored replication group must be the same.
*
*
* @param numNodeGroups
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node
* groups (shards) in the snapshot and in the restored replication group must be the same.
*/
public void setNumNodeGroups(Integer numNodeGroups) {
this.numNodeGroups = numNodeGroups;
}
/**
*
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node groups
* (shards) in the snapshot and in the restored replication group must be the same.
*
*
* @return The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node
* groups (shards) in the snapshot and in the restored replication group must be the same.
*/
public Integer getNumNodeGroups() {
return this.numNodeGroups;
}
/**
*
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node groups
* (shards) in the snapshot and in the restored replication group must be the same.
*
*
* @param numNodeGroups
* The number of node groups (shards) in this snapshot. When restoring from a snapshot, the number of node
* groups (shards) in the snapshot and in the restored replication group must be the same.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withNumNodeGroups(Integer numNodeGroups) {
setNumNodeGroups(numNodeGroups);
return this;
}
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*
* @param automaticFailover
* Indicates the status of automatic failover for the source Redis OSS replication group.
* @see AutomaticFailoverStatus
*/
public void setAutomaticFailover(String automaticFailover) {
this.automaticFailover = automaticFailover;
}
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*
* @return Indicates the status of automatic failover for the source Redis OSS replication group.
* @see AutomaticFailoverStatus
*/
public String getAutomaticFailover() {
return this.automaticFailover;
}
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*
* @param automaticFailover
* Indicates the status of automatic failover for the source Redis OSS replication group.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutomaticFailoverStatus
*/
public Snapshot withAutomaticFailover(String automaticFailover) {
setAutomaticFailover(automaticFailover);
return this;
}
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*
* @param automaticFailover
* Indicates the status of automatic failover for the source Redis OSS replication group.
* @see AutomaticFailoverStatus
*/
public void setAutomaticFailover(AutomaticFailoverStatus automaticFailover) {
withAutomaticFailover(automaticFailover);
}
/**
*
* Indicates the status of automatic failover for the source Redis OSS replication group.
*
*
* @param automaticFailover
* Indicates the status of automatic failover for the source Redis OSS replication group.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutomaticFailoverStatus
*/
public Snapshot withAutomaticFailover(AutomaticFailoverStatus automaticFailover) {
this.automaticFailover = automaticFailover.toString();
return this;
}
/**
*
* A list of the cache nodes in the source cluster.
*
*
* @return A list of the cache nodes in the source cluster.
*/
public java.util.List getNodeSnapshots() {
if (nodeSnapshots == null) {
nodeSnapshots = new com.amazonaws.internal.SdkInternalList();
}
return nodeSnapshots;
}
/**
*
* A list of the cache nodes in the source cluster.
*
*
* @param nodeSnapshots
* A list of the cache nodes in the source cluster.
*/
public void setNodeSnapshots(java.util.Collection nodeSnapshots) {
if (nodeSnapshots == null) {
this.nodeSnapshots = null;
return;
}
this.nodeSnapshots = new com.amazonaws.internal.SdkInternalList(nodeSnapshots);
}
/**
*
* A list of the cache nodes in the source cluster.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNodeSnapshots(java.util.Collection)} or {@link #withNodeSnapshots(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param nodeSnapshots
* A list of the cache nodes in the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withNodeSnapshots(NodeSnapshot... nodeSnapshots) {
if (this.nodeSnapshots == null) {
setNodeSnapshots(new com.amazonaws.internal.SdkInternalList(nodeSnapshots.length));
}
for (NodeSnapshot ele : nodeSnapshots) {
this.nodeSnapshots.add(ele);
}
return this;
}
/**
*
* A list of the cache nodes in the source cluster.
*
*
* @param nodeSnapshots
* A list of the cache nodes in the source cluster.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withNodeSnapshots(java.util.Collection nodeSnapshots) {
setNodeSnapshots(nodeSnapshots);
return this;
}
/**
*
* The ID of the KMS key used to encrypt the snapshot.
*
*
* @param kmsKeyId
* The ID of the KMS key used to encrypt the snapshot.
*/
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the snapshot.
*
*
* @return The ID of the KMS key used to encrypt the snapshot.
*/
public String getKmsKeyId() {
return this.kmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the snapshot.
*
*
* @param kmsKeyId
* The ID of the KMS key used to encrypt the snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withKmsKeyId(String kmsKeyId) {
setKmsKeyId(kmsKeyId);
return this;
}
/**
*
* The ARN (Amazon Resource Name) of the snapshot.
*
*
* @param aRN
* The ARN (Amazon Resource Name) of the snapshot.
*/
public void setARN(String aRN) {
this.aRN = aRN;
}
/**
*
* The ARN (Amazon Resource Name) of the snapshot.
*
*
* @return The ARN (Amazon Resource Name) of the snapshot.
*/
public String getARN() {
return this.aRN;
}
/**
*
* The ARN (Amazon Resource Name) of the snapshot.
*
*
* @param aRN
* The ARN (Amazon Resource Name) of the snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withARN(String aRN) {
setARN(aRN);
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 dataTiering
* 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.
* @see DataTieringStatus
*/
public void setDataTiering(String dataTiering) {
this.dataTiering = dataTiering;
}
/**
*
* 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.
* @see DataTieringStatus
*/
public String getDataTiering() {
return this.dataTiering;
}
/**
*
* 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 dataTiering
* 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.
* @see DataTieringStatus
*/
public Snapshot withDataTiering(String dataTiering) {
setDataTiering(dataTiering);
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 dataTiering
* 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.
* @see DataTieringStatus
*/
public void setDataTiering(DataTieringStatus dataTiering) {
withDataTiering(dataTiering);
}
/**
*
* 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 dataTiering
* 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.
* @see DataTieringStatus
*/
public Snapshot withDataTiering(DataTieringStatus dataTiering) {
this.dataTiering = dataTiering.toString();
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 (getSnapshotName() != null)
sb.append("SnapshotName: ").append(getSnapshotName()).append(",");
if (getReplicationGroupId() != null)
sb.append("ReplicationGroupId: ").append(getReplicationGroupId()).append(",");
if (getReplicationGroupDescription() != null)
sb.append("ReplicationGroupDescription: ").append(getReplicationGroupDescription()).append(",");
if (getCacheClusterId() != null)
sb.append("CacheClusterId: ").append(getCacheClusterId()).append(",");
if (getSnapshotStatus() != null)
sb.append("SnapshotStatus: ").append(getSnapshotStatus()).append(",");
if (getSnapshotSource() != null)
sb.append("SnapshotSource: ").append(getSnapshotSource()).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 (getNumCacheNodes() != null)
sb.append("NumCacheNodes: ").append(getNumCacheNodes()).append(",");
if (getPreferredAvailabilityZone() != null)
sb.append("PreferredAvailabilityZone: ").append(getPreferredAvailabilityZone()).append(",");
if (getPreferredOutpostArn() != null)
sb.append("PreferredOutpostArn: ").append(getPreferredOutpostArn()).append(",");
if (getCacheClusterCreateTime() != null)
sb.append("CacheClusterCreateTime: ").append(getCacheClusterCreateTime()).append(",");
if (getPreferredMaintenanceWindow() != null)
sb.append("PreferredMaintenanceWindow: ").append(getPreferredMaintenanceWindow()).append(",");
if (getTopicArn() != null)
sb.append("TopicArn: ").append(getTopicArn()).append(",");
if (getPort() != null)
sb.append("Port: ").append(getPort()).append(",");
if (getCacheParameterGroupName() != null)
sb.append("CacheParameterGroupName: ").append(getCacheParameterGroupName()).append(",");
if (getCacheSubnetGroupName() != null)
sb.append("CacheSubnetGroupName: ").append(getCacheSubnetGroupName()).append(",");
if (getVpcId() != null)
sb.append("VpcId: ").append(getVpcId()).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 (getNumNodeGroups() != null)
sb.append("NumNodeGroups: ").append(getNumNodeGroups()).append(",");
if (getAutomaticFailover() != null)
sb.append("AutomaticFailover: ").append(getAutomaticFailover()).append(",");
if (getNodeSnapshots() != null)
sb.append("NodeSnapshots: ").append(getNodeSnapshots()).append(",");
if (getKmsKeyId() != null)
sb.append("KmsKeyId: ").append(getKmsKeyId()).append(",");
if (getARN() != null)
sb.append("ARN: ").append(getARN()).append(",");
if (getDataTiering() != null)
sb.append("DataTiering: ").append(getDataTiering());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Snapshot == false)
return false;
Snapshot other = (Snapshot) obj;
if (other.getSnapshotName() == null ^ this.getSnapshotName() == null)
return false;
if (other.getSnapshotName() != null && other.getSnapshotName().equals(this.getSnapshotName()) == false)
return false;
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.getCacheClusterId() == null ^ this.getCacheClusterId() == null)
return false;
if (other.getCacheClusterId() != null && other.getCacheClusterId().equals(this.getCacheClusterId()) == false)
return false;
if (other.getSnapshotStatus() == null ^ this.getSnapshotStatus() == null)
return false;
if (other.getSnapshotStatus() != null && other.getSnapshotStatus().equals(this.getSnapshotStatus()) == false)
return false;
if (other.getSnapshotSource() == null ^ this.getSnapshotSource() == null)
return false;
if (other.getSnapshotSource() != null && other.getSnapshotSource().equals(this.getSnapshotSource()) == 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.getNumCacheNodes() == null ^ this.getNumCacheNodes() == null)
return false;
if (other.getNumCacheNodes() != null && other.getNumCacheNodes().equals(this.getNumCacheNodes()) == false)
return false;
if (other.getPreferredAvailabilityZone() == null ^ this.getPreferredAvailabilityZone() == null)
return false;
if (other.getPreferredAvailabilityZone() != null && other.getPreferredAvailabilityZone().equals(this.getPreferredAvailabilityZone()) == false)
return false;
if (other.getPreferredOutpostArn() == null ^ this.getPreferredOutpostArn() == null)
return false;
if (other.getPreferredOutpostArn() != null && other.getPreferredOutpostArn().equals(this.getPreferredOutpostArn()) == false)
return false;
if (other.getCacheClusterCreateTime() == null ^ this.getCacheClusterCreateTime() == null)
return false;
if (other.getCacheClusterCreateTime() != null && other.getCacheClusterCreateTime().equals(this.getCacheClusterCreateTime()) == 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.getTopicArn() == null ^ this.getTopicArn() == null)
return false;
if (other.getTopicArn() != null && other.getTopicArn().equals(this.getTopicArn()) == 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.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.getVpcId() == null ^ this.getVpcId() == null)
return false;
if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == 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.getNumNodeGroups() == null ^ this.getNumNodeGroups() == null)
return false;
if (other.getNumNodeGroups() != null && other.getNumNodeGroups().equals(this.getNumNodeGroups()) == false)
return false;
if (other.getAutomaticFailover() == null ^ this.getAutomaticFailover() == null)
return false;
if (other.getAutomaticFailover() != null && other.getAutomaticFailover().equals(this.getAutomaticFailover()) == false)
return false;
if (other.getNodeSnapshots() == null ^ this.getNodeSnapshots() == null)
return false;
if (other.getNodeSnapshots() != null && other.getNodeSnapshots().equals(this.getNodeSnapshots()) == 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.getARN() == null ^ this.getARN() == null)
return false;
if (other.getARN() != null && other.getARN().equals(this.getARN()) == false)
return false;
if (other.getDataTiering() == null ^ this.getDataTiering() == null)
return false;
if (other.getDataTiering() != null && other.getDataTiering().equals(this.getDataTiering()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getSnapshotName() == null) ? 0 : getSnapshotName().hashCode());
hashCode = prime * hashCode + ((getReplicationGroupId() == null) ? 0 : getReplicationGroupId().hashCode());
hashCode = prime * hashCode + ((getReplicationGroupDescription() == null) ? 0 : getReplicationGroupDescription().hashCode());
hashCode = prime * hashCode + ((getCacheClusterId() == null) ? 0 : getCacheClusterId().hashCode());
hashCode = prime * hashCode + ((getSnapshotStatus() == null) ? 0 : getSnapshotStatus().hashCode());
hashCode = prime * hashCode + ((getSnapshotSource() == null) ? 0 : getSnapshotSource().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 + ((getNumCacheNodes() == null) ? 0 : getNumCacheNodes().hashCode());
hashCode = prime * hashCode + ((getPreferredAvailabilityZone() == null) ? 0 : getPreferredAvailabilityZone().hashCode());
hashCode = prime * hashCode + ((getPreferredOutpostArn() == null) ? 0 : getPreferredOutpostArn().hashCode());
hashCode = prime * hashCode + ((getCacheClusterCreateTime() == null) ? 0 : getCacheClusterCreateTime().hashCode());
hashCode = prime * hashCode + ((getPreferredMaintenanceWindow() == null) ? 0 : getPreferredMaintenanceWindow().hashCode());
hashCode = prime * hashCode + ((getTopicArn() == null) ? 0 : getTopicArn().hashCode());
hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode());
hashCode = prime * hashCode + ((getCacheParameterGroupName() == null) ? 0 : getCacheParameterGroupName().hashCode());
hashCode = prime * hashCode + ((getCacheSubnetGroupName() == null) ? 0 : getCacheSubnetGroupName().hashCode());
hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().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 + ((getNumNodeGroups() == null) ? 0 : getNumNodeGroups().hashCode());
hashCode = prime * hashCode + ((getAutomaticFailover() == null) ? 0 : getAutomaticFailover().hashCode());
hashCode = prime * hashCode + ((getNodeSnapshots() == null) ? 0 : getNodeSnapshots().hashCode());
hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode());
hashCode = prime * hashCode + ((getARN() == null) ? 0 : getARN().hashCode());
hashCode = prime * hashCode + ((getDataTiering() == null) ? 0 : getDataTiering().hashCode());
return hashCode;
}
@Override
public Snapshot clone() {
try {
return (Snapshot) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}