All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.elasticache.model.Snapshot Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon ElastiCache module holds the client classes that are used for communicating with Amazon ElastiCache Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2011-2016 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;

/**
 * 

* Represents a copy of an entire cache cluster as of the time when the snapshot * was taken. *

*/ 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 user-supplied identifier of the source cache 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 * cache cluster. *

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for t1 or t2 * instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see Amazon ElastiCache * Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. *

*/ private String cacheNodeType; /** *

* The name of the cache engine (memcached or redis) used by * the source cache cluster. *

*/ private String engine; /** *

* The version of the cache engine version that is used by the source cache * cluster. *

*/ private String engineVersion; /** *

* The number of cache nodes in the source cache cluster. *

*

* For clusters running Redis, this value must be 1. For clusters running * Memcached, this value must be between 1 and 20. *

*/ private Integer numCacheNodes; /** *

* The name of the Availability Zone in which the source cache cluster is * located. *

*/ private String preferredAvailabilityZone; /** *

* The date and time when the source cache cluster was created. *

*/ private java.util.Date cacheClusterCreateTime; /** *

* Specifies the weekly time range during which maintenance on the cache * 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:05:00-sun:09:00 *

*/ private String preferredMaintenanceWindow; /** *

* The Amazon Resource Name (ARN) for the topic used by the source cache * cluster for publishing notifications. *

*/ private String topicArn; /** *

* The port number used by each cache nodes in the source cache cluster. *

*/ private Integer port; /** *

* The cache parameter group that is associated with the source cache * cluster. *

*/ private String cacheParameterGroupName; /** *

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

*/ private String cacheSubnetGroupName; /** *

* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet * group for the source cache cluster. *

*/ private String vpcId; /** *

* This parameter is currently disabled. *

*/ private Boolean autoMinorVersionUpgrade; /** *

* For an automatic snapshot, the number of days for which ElastiCache will * retain the snapshot before deleting it. *

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when the * snapshot was created. This field is otherwise ignored: Manual snapshots * do not expire, and can only be deleted using the DeleteSnapshot * action. *

*

* 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 cache cluster. *

*/ private String snapshotWindow; /** *

* A list of the cache nodes in the source cache cluster. *

*/ private com.amazonaws.internal.SdkInternalList nodeSnapshots; /** *

* 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 user-supplied identifier of the source cache cluster. *

* * @param cacheClusterId * The user-supplied identifier of the source cache cluster. */ public void setCacheClusterId(String cacheClusterId) { this.cacheClusterId = cacheClusterId; } /** *

* The user-supplied identifier of the source cache cluster. *

* * @return The user-supplied identifier of the source cache cluster. */ public String getCacheClusterId() { return this.cacheClusterId; } /** *

* The user-supplied identifier of the source cache cluster. *

* * @param cacheClusterId * The user-supplied identifier of the source cache 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 * cache cluster. *

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for t1 or t2 * instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see Amazon ElastiCache * Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. *

* * @param cacheNodeType * The name of the compute and memory capacity node type for the * source cache cluster.

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud * (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for * t1 or t2 instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see * Amazon * ElastiCache Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. */ public void setCacheNodeType(String cacheNodeType) { this.cacheNodeType = cacheNodeType; } /** *

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

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for t1 or t2 * instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see Amazon ElastiCache * Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. *

* * @return The name of the compute and memory capacity node type for the * source cache cluster.

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud * (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for * t1 or t2 instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, * see Amazon * ElastiCache Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. */ public String getCacheNodeType() { return this.cacheNodeType; } /** *

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

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for t1 or t2 * instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see Amazon ElastiCache * Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. *

* * @param cacheNodeType * The name of the compute and memory capacity node type for the * source cache cluster.

*

* Valid node types are as follows: *

*
    *
  • *

    * General purpose: *

    *
      *
    • *

      * Current generation: cache.t2.micro, * cache.t2.small, cache.t2.medium, * cache.m3.medium, cache.m3.large, * cache.m3.xlarge, cache.m3.2xlarge *

      *
    • *
    • *

      * Previous generation: cache.t1.micro, * cache.m1.small, cache.m1.medium, * cache.m1.large, cache.m1.xlarge *

      *
    • *
    *
  • *
  • *

    * Compute optimized: cache.c1.xlarge *

    *
  • *
  • *

    * Memory optimized: *

    *
      *
    • *

      * Current generation: cache.r3.large, * cache.r3.xlarge, cache.r3.2xlarge, * cache.r3.4xlarge, cache.r3.8xlarge *

      *
    • *
    • *

      * Previous generation: cache.m2.xlarge, * cache.m2.2xlarge, cache.m2.4xlarge *

      *
    • *
    *
  • *
*

* Notes: *

*
    *
  • *

    * All t2 instances are created in an Amazon Virtual Private Cloud * (VPC). *

    *
  • *
  • *

    * Redis backup/restore is not supported for t2 instances. *

    *
  • *
  • *

    * Redis Append-only files (AOF) functionality is not supported for * t1 or t2 instances. *

    *
  • *
*

* For a complete listing of cache node types and specifications, see * Amazon * ElastiCache Product Features and Details and Cache Node Type-Specific Parameters for Memcached or Cache Node Type-Specific Parameters for Redis. * @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 cache cluster. *

* * @param engine * The name of the cache engine (memcached or redis) * used by the source cache cluster. */ public void setEngine(String engine) { this.engine = engine; } /** *

* The name of the cache engine (memcached or redis) used by * the source cache cluster. *

* * @return The name of the cache engine (memcached or redis) * used by the source cache cluster. */ public String getEngine() { return this.engine; } /** *

* The name of the cache engine (memcached or redis) used by * the source cache cluster. *

* * @param engine * The name of the cache engine (memcached or redis) * used by the source cache 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 cache * cluster. *

* * @param engineVersion * The version of the cache engine version that is used by the source * cache cluster. */ public void setEngineVersion(String engineVersion) { this.engineVersion = engineVersion; } /** *

* The version of the cache engine version that is used by the source cache * cluster. *

* * @return The version of the cache engine version that is used by the * source cache cluster. */ public String getEngineVersion() { return this.engineVersion; } /** *

* The version of the cache engine version that is used by the source cache * cluster. *

* * @param engineVersion * The version of the cache engine version that is used by the source * cache 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 cache cluster. *

*

* For clusters running Redis, this value must be 1. For clusters running * Memcached, this value must be between 1 and 20. *

* * @param numCacheNodes * The number of cache nodes in the source cache cluster.

*

* For clusters running Redis, this value must be 1. For clusters * running Memcached, this value must be between 1 and 20. */ public void setNumCacheNodes(Integer numCacheNodes) { this.numCacheNodes = numCacheNodes; } /** *

* The number of cache nodes in the source cache cluster. *

*

* For clusters running Redis, this value must be 1. For clusters running * Memcached, this value must be between 1 and 20. *

* * @return The number of cache nodes in the source cache cluster.

*

* For clusters running Redis, this value must be 1. For clusters * running Memcached, this value must be between 1 and 20. */ public Integer getNumCacheNodes() { return this.numCacheNodes; } /** *

* The number of cache nodes in the source cache cluster. *

*

* For clusters running Redis, this value must be 1. For clusters running * Memcached, this value must be between 1 and 20. *

* * @param numCacheNodes * The number of cache nodes in the source cache cluster.

*

* For clusters running Redis, this value must be 1. For clusters * running Memcached, this value must be between 1 and 20. * @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 cache cluster is * located. *

* * @param preferredAvailabilityZone * The name of the Availability Zone in which the source cache * cluster is located. */ public void setPreferredAvailabilityZone(String preferredAvailabilityZone) { this.preferredAvailabilityZone = preferredAvailabilityZone; } /** *

* The name of the Availability Zone in which the source cache cluster is * located. *

* * @return The name of the Availability Zone in which the source cache * cluster is located. */ public String getPreferredAvailabilityZone() { return this.preferredAvailabilityZone; } /** *

* The name of the Availability Zone in which the source cache cluster is * located. *

* * @param preferredAvailabilityZone * The name of the Availability Zone in which the source cache * 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 date and time when the source cache cluster was created. *

* * @param cacheClusterCreateTime * The date and time when the source cache cluster was created. */ public void setCacheClusterCreateTime(java.util.Date cacheClusterCreateTime) { this.cacheClusterCreateTime = cacheClusterCreateTime; } /** *

* The date and time when the source cache cluster was created. *

* * @return The date and time when the source cache cluster was created. */ public java.util.Date getCacheClusterCreateTime() { return this.cacheClusterCreateTime; } /** *

* The date and time when the source cache cluster was created. *

* * @param cacheClusterCreateTime * The date and time when the source cache 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 cache * 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:05:00-sun:09:00 *

* * @param preferredMaintenanceWindow * Specifies the weekly time range during which maintenance on the * cache 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:05:00-sun:09:00 */ public void setPreferredMaintenanceWindow(String preferredMaintenanceWindow) { this.preferredMaintenanceWindow = preferredMaintenanceWindow; } /** *

* Specifies the weekly time range during which maintenance on the cache * 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:05:00-sun:09:00 *

* * @return Specifies the weekly time range during which maintenance on the * cache 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:05:00-sun:09:00 */ public String getPreferredMaintenanceWindow() { return this.preferredMaintenanceWindow; } /** *

* Specifies the weekly time range during which maintenance on the cache * 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:05:00-sun:09:00 *

* * @param preferredMaintenanceWindow * Specifies the weekly time range during which maintenance on the * cache 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:05:00-sun:09:00 * @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 cache * cluster for publishing notifications. *

* * @param topicArn * The Amazon Resource Name (ARN) for the topic used by the source * cache cluster for publishing notifications. */ public void setTopicArn(String topicArn) { this.topicArn = topicArn; } /** *

* The Amazon Resource Name (ARN) for the topic used by the source cache * cluster for publishing notifications. *

* * @return The Amazon Resource Name (ARN) for the topic used by the source * cache cluster for publishing notifications. */ public String getTopicArn() { return this.topicArn; } /** *

* The Amazon Resource Name (ARN) for the topic used by the source cache * cluster for publishing notifications. *

* * @param topicArn * The Amazon Resource Name (ARN) for the topic used by the source * cache 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 cache cluster. *

* * @param port * The port number used by each cache nodes in the source cache * cluster. */ public void setPort(Integer port) { this.port = port; } /** *

* The port number used by each cache nodes in the source cache cluster. *

* * @return The port number used by each cache nodes in the source cache * cluster. */ public Integer getPort() { return this.port; } /** *

* The port number used by each cache nodes in the source cache cluster. *

* * @param port * The port number used by each cache nodes in the source cache * 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 cache * cluster. *

* * @param cacheParameterGroupName * The cache parameter group that is associated with the source cache * cluster. */ public void setCacheParameterGroupName(String cacheParameterGroupName) { this.cacheParameterGroupName = cacheParameterGroupName; } /** *

* The cache parameter group that is associated with the source cache * cluster. *

* * @return The cache parameter group that is associated with the source * cache cluster. */ public String getCacheParameterGroupName() { return this.cacheParameterGroupName; } /** *

* The cache parameter group that is associated with the source cache * cluster. *

* * @param cacheParameterGroupName * The cache parameter group that is associated with the source cache * 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 cache * cluster. *

* * @param cacheSubnetGroupName * The name of the cache subnet group associated with the source * cache cluster. */ public void setCacheSubnetGroupName(String cacheSubnetGroupName) { this.cacheSubnetGroupName = cacheSubnetGroupName; } /** *

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

* * @return The name of the cache subnet group associated with the source * cache cluster. */ public String getCacheSubnetGroupName() { return this.cacheSubnetGroupName; } /** *

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

* * @param cacheSubnetGroupName * The name of the cache subnet group associated with the source * cache 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 cache cluster. *

* * @param vpcId * The Amazon Virtual Private Cloud identifier (VPC ID) of the cache * subnet group for the source cache 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 cache cluster. *

* * @return The Amazon Virtual Private Cloud identifier (VPC ID) of the cache * subnet group for the source cache cluster. */ public String getVpcId() { return this.vpcId; } /** *

* The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet * group for the source cache cluster. *

* * @param vpcId * The Amazon Virtual Private Cloud identifier (VPC ID) of the cache * subnet group for the source cache 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; } /** *

* This parameter is currently disabled. *

* * @param autoMinorVersionUpgrade * This parameter is currently disabled. */ public void setAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) { this.autoMinorVersionUpgrade = autoMinorVersionUpgrade; } /** *

* This parameter is currently disabled. *

* * @return This parameter is currently disabled. */ public Boolean getAutoMinorVersionUpgrade() { return this.autoMinorVersionUpgrade; } /** *

* This parameter is currently disabled. *

* * @param autoMinorVersionUpgrade * This parameter is currently disabled. * @return Returns a reference to this object so that method calls can be * chained together. */ public Snapshot withAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) { setAutoMinorVersionUpgrade(autoMinorVersionUpgrade); return this; } /** *

* This parameter is currently disabled. *

* * @return This parameter is currently disabled. */ public Boolean isAutoMinorVersionUpgrade() { return this.autoMinorVersionUpgrade; } /** *

* For an automatic snapshot, the number of days for which ElastiCache will * retain the snapshot before deleting it. *

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when the * snapshot was created. This field is otherwise ignored: Manual snapshots * do not expire, and can only be deleted using the DeleteSnapshot * action. *

*

* 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 will retain the snapshot before deleting it.

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when * the snapshot was created. This field is otherwise ignored: Manual * snapshots do not expire, and can only be deleted using the * DeleteSnapshot action. *

*

* 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 will * retain the snapshot before deleting it. *

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when the * snapshot was created. This field is otherwise ignored: Manual snapshots * do not expire, and can only be deleted using the DeleteSnapshot * action. *

*

* 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 will retain the snapshot before deleting it.

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when * the snapshot was created. This field is otherwise ignored: Manual * snapshots do not expire, and can only be deleted using the * DeleteSnapshot action. *

*

* 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 will * retain the snapshot before deleting it. *

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when the * snapshot was created. This field is otherwise ignored: Manual snapshots * do not expire, and can only be deleted using the DeleteSnapshot * action. *

*

* 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 will retain the snapshot before deleting it.

*

* For manual snapshots, this field reflects the * SnapshotRetentionLimit for the source cache cluster when * the snapshot was created. This field is otherwise ignored: Manual * snapshots do not expire, and can only be deleted using the * DeleteSnapshot action. *

*

* 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 cache cluster. *

* * @param snapshotWindow * The daily time range during which ElastiCache takes daily * snapshots of the source cache cluster. */ public void setSnapshotWindow(String snapshotWindow) { this.snapshotWindow = snapshotWindow; } /** *

* The daily time range during which ElastiCache takes daily snapshots of * the source cache cluster. *

* * @return The daily time range during which ElastiCache takes daily * snapshots of the source cache cluster. */ public String getSnapshotWindow() { return this.snapshotWindow; } /** *

* The daily time range during which ElastiCache takes daily snapshots of * the source cache cluster. *

* * @param snapshotWindow * The daily time range during which ElastiCache takes daily * snapshots of the source cache 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; } /** *

* A list of the cache nodes in the source cache cluster. *

* * @return A list of the cache nodes in the source cache 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 cache cluster. *

* * @param nodeSnapshots * A list of the cache nodes in the source cache 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 cache 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 cache 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 cache cluster. *

* * @param nodeSnapshots * A list of the cache nodes in the source cache 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; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @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: " + getSnapshotName() + ","); if (getCacheClusterId() != null) sb.append("CacheClusterId: " + getCacheClusterId() + ","); if (getSnapshotStatus() != null) sb.append("SnapshotStatus: " + getSnapshotStatus() + ","); if (getSnapshotSource() != null) sb.append("SnapshotSource: " + getSnapshotSource() + ","); if (getCacheNodeType() != null) sb.append("CacheNodeType: " + getCacheNodeType() + ","); if (getEngine() != null) sb.append("Engine: " + getEngine() + ","); if (getEngineVersion() != null) sb.append("EngineVersion: " + getEngineVersion() + ","); if (getNumCacheNodes() != null) sb.append("NumCacheNodes: " + getNumCacheNodes() + ","); if (getPreferredAvailabilityZone() != null) sb.append("PreferredAvailabilityZone: " + getPreferredAvailabilityZone() + ","); if (getCacheClusterCreateTime() != null) sb.append("CacheClusterCreateTime: " + getCacheClusterCreateTime() + ","); if (getPreferredMaintenanceWindow() != null) sb.append("PreferredMaintenanceWindow: " + getPreferredMaintenanceWindow() + ","); if (getTopicArn() != null) sb.append("TopicArn: " + getTopicArn() + ","); if (getPort() != null) sb.append("Port: " + getPort() + ","); if (getCacheParameterGroupName() != null) sb.append("CacheParameterGroupName: " + getCacheParameterGroupName() + ","); if (getCacheSubnetGroupName() != null) sb.append("CacheSubnetGroupName: " + getCacheSubnetGroupName() + ","); if (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ","); if (getAutoMinorVersionUpgrade() != null) sb.append("AutoMinorVersionUpgrade: " + getAutoMinorVersionUpgrade() + ","); if (getSnapshotRetentionLimit() != null) sb.append("SnapshotRetentionLimit: " + getSnapshotRetentionLimit() + ","); if (getSnapshotWindow() != null) sb.append("SnapshotWindow: " + getSnapshotWindow() + ","); if (getNodeSnapshots() != null) sb.append("NodeSnapshots: " + getNodeSnapshots()); 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.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.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.getNodeSnapshots() == null ^ this.getNodeSnapshots() == null) return false; if (other.getNodeSnapshots() != null && other.getNodeSnapshots().equals(this.getNodeSnapshots()) == 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 + ((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 + ((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 + ((getNodeSnapshots() == null) ? 0 : getNodeSnapshots() .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); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy