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

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

/*
 * 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.ec2.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Describes a snapshot. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Snapshot implements Serializable, Cloneable { /** *

* The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the * data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys * are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key * identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by * DescribeSnapshots. *

*/ private String dataEncryptionKeyId; /** *

* The description for the snapshot. *

*/ private String description; /** *

* Indicates whether the snapshot is encrypted. *

*/ private Boolean encrypted; /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume * encryption key for the parent volume. *

*/ private String kmsKeyId; /** *

* The ID of the Amazon Web Services account that owns the EBS snapshot. *

*/ private String ownerId; /** *

* The progress of the snapshot, as a percentage. *

*/ private String progress; /** *

* The ID of the snapshot. Each snapshot receives a unique identifier when it is created. *

*/ private String snapshotId; /** *

* The time stamp when the snapshot was initiated. *

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

* The snapshot state. *

*/ private String state; /** *

* Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the * proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help * you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots. *

*/ private String stateMessage; /** *

* The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action * have an arbitrary volume ID that should not be used for any purpose. *

*/ private String volumeId; /** *

* The size of the volume, in GiB. *

*/ private Integer volumeSize; /** *

* The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. *

*/ private String ownerAlias; /** *

* The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *

*/ private String outpostArn; /** *

* Any tags assigned to the snapshot. *

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

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

*/ private String storageTier; /** *

* Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. *

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

* Reserved for future use. *

*/ private String sseType; /** *

* The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the * data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys * are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key * identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by * DescribeSnapshots. *

* * @param dataEncryptionKeyId * The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to * the data encryption key that was used to encrypt the original volume or snapshot copy. Because data * encryption keys are inherited by volumes created from snapshots, and vice versa, if snapshots share the * same data encryption key identifier, then they belong to the same volume/snapshot lineage. This parameter * is only returned by DescribeSnapshots. */ public void setDataEncryptionKeyId(String dataEncryptionKeyId) { this.dataEncryptionKeyId = dataEncryptionKeyId; } /** *

* The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the * data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys * are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key * identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by * DescribeSnapshots. *

* * @return The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds * to the data encryption key that was used to encrypt the original volume or snapshot copy. Because data * encryption keys are inherited by volumes created from snapshots, and vice versa, if snapshots share the * same data encryption key identifier, then they belong to the same volume/snapshot lineage. This parameter * is only returned by DescribeSnapshots. */ public String getDataEncryptionKeyId() { return this.dataEncryptionKeyId; } /** *

* The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the * data encryption key that was used to encrypt the original volume or snapshot copy. Because data encryption keys * are inherited by volumes created from snapshots, and vice versa, if snapshots share the same data encryption key * identifier, then they belong to the same volume/snapshot lineage. This parameter is only returned by * DescribeSnapshots. *

* * @param dataEncryptionKeyId * The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to * the data encryption key that was used to encrypt the original volume or snapshot copy. Because data * encryption keys are inherited by volumes created from snapshots, and vice versa, if snapshots share the * same data encryption key identifier, then they belong to the same volume/snapshot lineage. This parameter * is only returned by DescribeSnapshots. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withDataEncryptionKeyId(String dataEncryptionKeyId) { setDataEncryptionKeyId(dataEncryptionKeyId); return this; } /** *

* The description for the snapshot. *

* * @param description * The description for the snapshot. */ public void setDescription(String description) { this.description = description; } /** *

* The description for the snapshot. *

* * @return The description for the snapshot. */ public String getDescription() { return this.description; } /** *

* The description for the snapshot. *

* * @param description * The description for the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withDescription(String description) { setDescription(description); return this; } /** *

* Indicates whether the snapshot is encrypted. *

* * @param encrypted * Indicates whether the snapshot is encrypted. */ public void setEncrypted(Boolean encrypted) { this.encrypted = encrypted; } /** *

* Indicates whether the snapshot is encrypted. *

* * @return Indicates whether the snapshot is encrypted. */ public Boolean getEncrypted() { return this.encrypted; } /** *

* Indicates whether the snapshot is encrypted. *

* * @param encrypted * Indicates whether the snapshot is encrypted. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withEncrypted(Boolean encrypted) { setEncrypted(encrypted); return this; } /** *

* Indicates whether the snapshot is encrypted. *

* * @return Indicates whether the snapshot is encrypted. */ public Boolean isEncrypted() { return this.encrypted; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume * encryption key for the parent volume. *

* * @param kmsKeyId * The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the * volume encryption key for the parent volume. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume * encryption key for the parent volume. *

* * @return The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the * volume encryption key for the parent volume. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume * encryption key for the parent volume. *

* * @param kmsKeyId * The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the * volume encryption key for the parent volume. * @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 ID of the Amazon Web Services account that owns the EBS snapshot. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the EBS snapshot. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* The ID of the Amazon Web Services account that owns the EBS snapshot. *

* * @return The ID of the Amazon Web Services account that owns the EBS snapshot. */ public String getOwnerId() { return this.ownerId; } /** *

* The ID of the Amazon Web Services account that owns the EBS snapshot. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the EBS snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* The progress of the snapshot, as a percentage. *

* * @param progress * The progress of the snapshot, as a percentage. */ public void setProgress(String progress) { this.progress = progress; } /** *

* The progress of the snapshot, as a percentage. *

* * @return The progress of the snapshot, as a percentage. */ public String getProgress() { return this.progress; } /** *

* The progress of the snapshot, as a percentage. *

* * @param progress * The progress of the snapshot, as a percentage. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withProgress(String progress) { setProgress(progress); return this; } /** *

* The ID of the snapshot. Each snapshot receives a unique identifier when it is created. *

* * @param snapshotId * The ID of the snapshot. Each snapshot receives a unique identifier when it is created. */ public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } /** *

* The ID of the snapshot. Each snapshot receives a unique identifier when it is created. *

* * @return The ID of the snapshot. Each snapshot receives a unique identifier when it is created. */ public String getSnapshotId() { return this.snapshotId; } /** *

* The ID of the snapshot. Each snapshot receives a unique identifier when it is created. *

* * @param snapshotId * The ID of the snapshot. Each snapshot receives a unique identifier when it is created. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withSnapshotId(String snapshotId) { setSnapshotId(snapshotId); return this; } /** *

* The time stamp when the snapshot was initiated. *

* * @param startTime * The time stamp when the snapshot was initiated. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

* The time stamp when the snapshot was initiated. *

* * @return The time stamp when the snapshot was initiated. */ public java.util.Date getStartTime() { return this.startTime; } /** *

* The time stamp when the snapshot was initiated. *

* * @param startTime * The time stamp when the snapshot was initiated. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

* The snapshot state. *

* * @param state * The snapshot state. * @see SnapshotState */ public void setState(String state) { this.state = state; } /** *

* The snapshot state. *

* * @return The snapshot state. * @see SnapshotState */ public String getState() { return this.state; } /** *

* The snapshot state. *

* * @param state * The snapshot state. * @return Returns a reference to this object so that method calls can be chained together. * @see SnapshotState */ public Snapshot withState(String state) { setState(state); return this; } /** *

* The snapshot state. *

* * @param state * The snapshot state. * @see SnapshotState */ public void setState(SnapshotState state) { withState(state); } /** *

* The snapshot state. *

* * @param state * The snapshot state. * @return Returns a reference to this object so that method calls can be chained together. * @see SnapshotState */ public Snapshot withState(SnapshotState state) { this.state = state.toString(); return this; } /** *

* Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the * proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help * you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots. *

* * @param stateMessage * Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, * if the proper Key Management Service (KMS) permissions are not obtained) this field displays error state * details to help you diagnose why the error occurred. This parameter is only returned by * DescribeSnapshots. */ public void setStateMessage(String stateMessage) { this.stateMessage = stateMessage; } /** *

* Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the * proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help * you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots. *

* * @return Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for * example, if the proper Key Management Service (KMS) permissions are not obtained) this field displays * error state details to help you diagnose why the error occurred. This parameter is only returned by * DescribeSnapshots. */ public String getStateMessage() { return this.stateMessage; } /** *

* Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, if the * proper Key Management Service (KMS) permissions are not obtained) this field displays error state details to help * you diagnose why the error occurred. This parameter is only returned by DescribeSnapshots. *

* * @param stateMessage * Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy operation fails (for example, * if the proper Key Management Service (KMS) permissions are not obtained) this field displays error state * details to help you diagnose why the error occurred. This parameter is only returned by * DescribeSnapshots. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withStateMessage(String stateMessage) { setStateMessage(stateMessage); return this; } /** *

* The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action * have an arbitrary volume ID that should not be used for any purpose. *

* * @param volumeId * The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot * action have an arbitrary volume ID that should not be used for any purpose. */ public void setVolumeId(String volumeId) { this.volumeId = volumeId; } /** *

* The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action * have an arbitrary volume ID that should not be used for any purpose. *

* * @return The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot * action have an arbitrary volume ID that should not be used for any purpose. */ public String getVolumeId() { return this.volumeId; } /** *

* The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot action * have an arbitrary volume ID that should not be used for any purpose. *

* * @param volumeId * The ID of the volume that was used to create the snapshot. Snapshots created by the CopySnapshot * action have an arbitrary volume ID that should not be used for any purpose. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withVolumeId(String volumeId) { setVolumeId(volumeId); return this; } /** *

* The size of the volume, in GiB. *

* * @param volumeSize * The size of the volume, in GiB. */ public void setVolumeSize(Integer volumeSize) { this.volumeSize = volumeSize; } /** *

* The size of the volume, in GiB. *

* * @return The size of the volume, in GiB. */ public Integer getVolumeSize() { return this.volumeSize; } /** *

* The size of the volume, in GiB. *

* * @param volumeSize * The size of the volume, in GiB. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withVolumeSize(Integer volumeSize) { setVolumeSize(volumeSize); return this; } /** *

* The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. *

* * @param ownerAlias * The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. */ public void setOwnerAlias(String ownerAlias) { this.ownerAlias = ownerAlias; } /** *

* The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. *

* * @return The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not * the user-configured Amazon Web Services account alias set using the IAM console. */ public String getOwnerAlias() { return this.ownerAlias; } /** *

* The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. *

* * @param ownerAlias * The Amazon Web Services owner alias, from an Amazon-maintained list (amazon). This is not the * user-configured Amazon Web Services account alias set using the IAM console. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withOwnerAlias(String ownerAlias) { setOwnerAlias(ownerAlias); return this; } /** *

* The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *

* * @param outpostArn * The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. */ public void setOutpostArn(String outpostArn) { this.outpostArn = outpostArn; } /** *

* The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *

* * @return The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. */ public String getOutpostArn() { return this.outpostArn; } /** *

* The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *

* * @param outpostArn * The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withOutpostArn(String outpostArn) { setOutpostArn(outpostArn); return this; } /** *

* Any tags assigned to the snapshot. *

* * @return Any tags assigned to the snapshot. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* Any tags assigned to the snapshot. *

* * @param tags * Any tags assigned to the snapshot. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* Any tags assigned to the snapshot. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * Any tags assigned to the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* Any tags assigned to the snapshot. *

* * @param tags * Any tags assigned to the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

* * @param storageTier * The storage tier in which the snapshot is stored. standard indicates that the snapshot is * stored in the standard snapshot storage tier and that it is ready for use. archive indicates * that the snapshot is currently archived and that it must be restored before it can be used. * @see StorageTier */ public void setStorageTier(String storageTier) { this.storageTier = storageTier; } /** *

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

* * @return The storage tier in which the snapshot is stored. standard indicates that the snapshot is * stored in the standard snapshot storage tier and that it is ready for use. archive indicates * that the snapshot is currently archived and that it must be restored before it can be used. * @see StorageTier */ public String getStorageTier() { return this.storageTier; } /** *

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

* * @param storageTier * The storage tier in which the snapshot is stored. standard indicates that the snapshot is * stored in the standard snapshot storage tier and that it is ready for use. archive indicates * that the snapshot is currently archived and that it must be restored before it can be used. * @return Returns a reference to this object so that method calls can be chained together. * @see StorageTier */ public Snapshot withStorageTier(String storageTier) { setStorageTier(storageTier); return this; } /** *

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

* * @param storageTier * The storage tier in which the snapshot is stored. standard indicates that the snapshot is * stored in the standard snapshot storage tier and that it is ready for use. archive indicates * that the snapshot is currently archived and that it must be restored before it can be used. * @see StorageTier */ public void setStorageTier(StorageTier storageTier) { withStorageTier(storageTier); } /** *

* The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in * the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot * is currently archived and that it must be restored before it can be used. *

* * @param storageTier * The storage tier in which the snapshot is stored. standard indicates that the snapshot is * stored in the standard snapshot storage tier and that it is ready for use. archive indicates * that the snapshot is currently archived and that it must be restored before it can be used. * @return Returns a reference to this object so that method calls can be chained together. * @see StorageTier */ public Snapshot withStorageTier(StorageTier storageTier) { this.storageTier = storageTier.toString(); return this; } /** *

* Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. *

* * @param restoreExpiryTime * Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. */ public void setRestoreExpiryTime(java.util.Date restoreExpiryTime) { this.restoreExpiryTime = restoreExpiryTime; } /** *

* Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. *

* * @return Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. */ public java.util.Date getRestoreExpiryTime() { return this.restoreExpiryTime; } /** *

* Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. *

* * @param restoreExpiryTime * Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily * restored snapshot will be automatically re-archived. * @return Returns a reference to this object so that method calls can be chained together. */ public Snapshot withRestoreExpiryTime(java.util.Date restoreExpiryTime) { setRestoreExpiryTime(restoreExpiryTime); return this; } /** *

* Reserved for future use. *

* * @param sseType * Reserved for future use. * @see SSEType */ public void setSseType(String sseType) { this.sseType = sseType; } /** *

* Reserved for future use. *

* * @return Reserved for future use. * @see SSEType */ public String getSseType() { return this.sseType; } /** *

* Reserved for future use. *

* * @param sseType * Reserved for future use. * @return Returns a reference to this object so that method calls can be chained together. * @see SSEType */ public Snapshot withSseType(String sseType) { setSseType(sseType); return this; } /** *

* Reserved for future use. *

* * @param sseType * Reserved for future use. * @see SSEType */ public void setSseType(SSEType sseType) { withSseType(sseType); } /** *

* Reserved for future use. *

* * @param sseType * Reserved for future use. * @return Returns a reference to this object so that method calls can be chained together. * @see SSEType */ public Snapshot withSseType(SSEType sseType) { this.sseType = sseType.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 (getDataEncryptionKeyId() != null) sb.append("DataEncryptionKeyId: ").append(getDataEncryptionKeyId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEncrypted() != null) sb.append("Encrypted: ").append(getEncrypted()).append(","); if (getKmsKeyId() != null) sb.append("KmsKeyId: ").append(getKmsKeyId()).append(","); if (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()).append(","); if (getProgress() != null) sb.append("Progress: ").append(getProgress()).append(","); if (getSnapshotId() != null) sb.append("SnapshotId: ").append(getSnapshotId()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getStateMessage() != null) sb.append("StateMessage: ").append(getStateMessage()).append(","); if (getVolumeId() != null) sb.append("VolumeId: ").append(getVolumeId()).append(","); if (getVolumeSize() != null) sb.append("VolumeSize: ").append(getVolumeSize()).append(","); if (getOwnerAlias() != null) sb.append("OwnerAlias: ").append(getOwnerAlias()).append(","); if (getOutpostArn() != null) sb.append("OutpostArn: ").append(getOutpostArn()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getStorageTier() != null) sb.append("StorageTier: ").append(getStorageTier()).append(","); if (getRestoreExpiryTime() != null) sb.append("RestoreExpiryTime: ").append(getRestoreExpiryTime()).append(","); if (getSseType() != null) sb.append("SseType: ").append(getSseType()); 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.getDataEncryptionKeyId() == null ^ this.getDataEncryptionKeyId() == null) return false; if (other.getDataEncryptionKeyId() != null && other.getDataEncryptionKeyId().equals(this.getDataEncryptionKeyId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getEncrypted() == null ^ this.getEncrypted() == null) return false; if (other.getEncrypted() != null && other.getEncrypted().equals(this.getEncrypted()) == 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.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getProgress() == null ^ this.getProgress() == null) return false; if (other.getProgress() != null && other.getProgress().equals(this.getProgress()) == false) return false; if (other.getSnapshotId() == null ^ this.getSnapshotId() == null) return false; if (other.getSnapshotId() != null && other.getSnapshotId().equals(this.getSnapshotId()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getStateMessage() == null ^ this.getStateMessage() == null) return false; if (other.getStateMessage() != null && other.getStateMessage().equals(this.getStateMessage()) == false) return false; if (other.getVolumeId() == null ^ this.getVolumeId() == null) return false; if (other.getVolumeId() != null && other.getVolumeId().equals(this.getVolumeId()) == false) return false; if (other.getVolumeSize() == null ^ this.getVolumeSize() == null) return false; if (other.getVolumeSize() != null && other.getVolumeSize().equals(this.getVolumeSize()) == false) return false; if (other.getOwnerAlias() == null ^ this.getOwnerAlias() == null) return false; if (other.getOwnerAlias() != null && other.getOwnerAlias().equals(this.getOwnerAlias()) == false) return false; if (other.getOutpostArn() == null ^ this.getOutpostArn() == null) return false; if (other.getOutpostArn() != null && other.getOutpostArn().equals(this.getOutpostArn()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getStorageTier() == null ^ this.getStorageTier() == null) return false; if (other.getStorageTier() != null && other.getStorageTier().equals(this.getStorageTier()) == false) return false; if (other.getRestoreExpiryTime() == null ^ this.getRestoreExpiryTime() == null) return false; if (other.getRestoreExpiryTime() != null && other.getRestoreExpiryTime().equals(this.getRestoreExpiryTime()) == false) return false; if (other.getSseType() == null ^ this.getSseType() == null) return false; if (other.getSseType() != null && other.getSseType().equals(this.getSseType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDataEncryptionKeyId() == null) ? 0 : getDataEncryptionKeyId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode()); hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode()); hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode()); hashCode = prime * hashCode + ((getSnapshotId() == null) ? 0 : getSnapshotId().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getStateMessage() == null) ? 0 : getStateMessage().hashCode()); hashCode = prime * hashCode + ((getVolumeId() == null) ? 0 : getVolumeId().hashCode()); hashCode = prime * hashCode + ((getVolumeSize() == null) ? 0 : getVolumeSize().hashCode()); hashCode = prime * hashCode + ((getOwnerAlias() == null) ? 0 : getOwnerAlias().hashCode()); hashCode = prime * hashCode + ((getOutpostArn() == null) ? 0 : getOutpostArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getStorageTier() == null) ? 0 : getStorageTier().hashCode()); hashCode = prime * hashCode + ((getRestoreExpiryTime() == null) ? 0 : getRestoreExpiryTime().hashCode()); hashCode = prime * hashCode + ((getSseType() == null) ? 0 : getSseType().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 - 2024 Weber Informatics LLC | Privacy Policy