com.amazonaws.services.securityhub.model.AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails Maven / Gradle / Ivy
Show all versions of aws-java-sdk-securityhub Show documentation
/*
* Copyright 2016-2021 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.securityhub.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Parameters that are used to automatically set up EBS volumes when an instance is launched.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails implements Serializable, Cloneable, StructuredPojo {
/**
*
* Whether to delete the volume when the instance is terminated.
*
*/
private Boolean deleteOnTermination;
/**
*
* Whether to encrypt the volume.
*
*/
private Boolean encrypted;
/**
*
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes. Not used
* with standard
, gp2
, st1
, or sc1
volumes.
*
*/
private Integer iops;
/**
*
* The snapshot ID of the volume to use.
*
*
* You must specify either VolumeSize
or SnapshotId
.
*
*/
private String snapshotId;
/**
*
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the size of
* the snapshot.
*
*/
private Integer volumeSize;
/**
*
* The volume type.
*
*/
private String volumeType;
/**
*
* Whether to delete the volume when the instance is terminated.
*
*
* @param deleteOnTermination
* Whether to delete the volume when the instance is terminated.
*/
public void setDeleteOnTermination(Boolean deleteOnTermination) {
this.deleteOnTermination = deleteOnTermination;
}
/**
*
* Whether to delete the volume when the instance is terminated.
*
*
* @return Whether to delete the volume when the instance is terminated.
*/
public Boolean getDeleteOnTermination() {
return this.deleteOnTermination;
}
/**
*
* Whether to delete the volume when the instance is terminated.
*
*
* @param deleteOnTermination
* Whether to delete the volume when the instance is terminated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withDeleteOnTermination(Boolean deleteOnTermination) {
setDeleteOnTermination(deleteOnTermination);
return this;
}
/**
*
* Whether to delete the volume when the instance is terminated.
*
*
* @return Whether to delete the volume when the instance is terminated.
*/
public Boolean isDeleteOnTermination() {
return this.deleteOnTermination;
}
/**
*
* Whether to encrypt the volume.
*
*
* @param encrypted
* Whether to encrypt the volume.
*/
public void setEncrypted(Boolean encrypted) {
this.encrypted = encrypted;
}
/**
*
* Whether to encrypt the volume.
*
*
* @return Whether to encrypt the volume.
*/
public Boolean getEncrypted() {
return this.encrypted;
}
/**
*
* Whether to encrypt the volume.
*
*
* @param encrypted
* Whether to encrypt the volume.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withEncrypted(Boolean encrypted) {
setEncrypted(encrypted);
return this;
}
/**
*
* Whether to encrypt the volume.
*
*
* @return Whether to encrypt the volume.
*/
public Boolean isEncrypted() {
return this.encrypted;
}
/**
*
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes. Not used
* with standard
, gp2
, st1
, or sc1
volumes.
*
*
* @param iops
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes.
* Not used with standard
, gp2
, st1
, or sc1
volumes.
*/
public void setIops(Integer iops) {
this.iops = iops;
}
/**
*
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes. Not used
* with standard
, gp2
, st1
, or sc1
volumes.
*
*
* @return The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes.
* Not used with standard
, gp2
, st1
, or sc1
volumes.
*/
public Integer getIops() {
return this.iops;
}
/**
*
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes. Not used
* with standard
, gp2
, st1
, or sc1
volumes.
*
*
* @param iops
* The number of input/output (I/O) operations per second (IOPS) to provision for the volume.
*
* Only supported for gp3
or io1
volumes. Required for io1
volumes.
* Not used with standard
, gp2
, st1
, or sc1
volumes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withIops(Integer iops) {
setIops(iops);
return this;
}
/**
*
* The snapshot ID of the volume to use.
*
*
* You must specify either VolumeSize
or SnapshotId
.
*
*
* @param snapshotId
* The snapshot ID of the volume to use.
*
* You must specify either VolumeSize
or SnapshotId
.
*/
public void setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
}
/**
*
* The snapshot ID of the volume to use.
*
*
* You must specify either VolumeSize
or SnapshotId
.
*
*
* @return The snapshot ID of the volume to use.
*
* You must specify either VolumeSize
or SnapshotId
.
*/
public String getSnapshotId() {
return this.snapshotId;
}
/**
*
* The snapshot ID of the volume to use.
*
*
* You must specify either VolumeSize
or SnapshotId
.
*
*
* @param snapshotId
* The snapshot ID of the volume to use.
*
* You must specify either VolumeSize
or SnapshotId
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withSnapshotId(String snapshotId) {
setSnapshotId(snapshotId);
return this;
}
/**
*
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the size of
* the snapshot.
*
*
* @param volumeSize
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the
* size of the snapshot.
*/
public void setVolumeSize(Integer volumeSize) {
this.volumeSize = volumeSize;
}
/**
*
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the size of
* the snapshot.
*
*
* @return The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the
* size of the snapshot.
*/
public Integer getVolumeSize() {
return this.volumeSize;
}
/**
*
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the size of
* the snapshot.
*
*
* @param volumeSize
* The volume size, in GiBs. The following are the supported volumes sizes for each volume type:
*
* -
*
* gp2 and gp3: 1-16,384
*
*
* -
*
* io1: 4-16,384
*
*
* -
*
* st1 and sc1: 125-16,384
*
*
* -
*
* standard: 1-1,024
*
*
*
*
* You must specify either SnapshotId
or VolumeSize
. If you specify both
* SnapshotId
and VolumeSize
, the volume size must be equal or greater than the
* size of the snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withVolumeSize(Integer volumeSize) {
setVolumeSize(volumeSize);
return this;
}
/**
*
* The volume type.
*
*
* @param volumeType
* The volume type.
*/
public void setVolumeType(String volumeType) {
this.volumeType = volumeType;
}
/**
*
* The volume type.
*
*
* @return The volume type.
*/
public String getVolumeType() {
return this.volumeType;
}
/**
*
* The volume type.
*
*
* @param volumeType
* The volume type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails withVolumeType(String volumeType) {
setVolumeType(volumeType);
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 (getDeleteOnTermination() != null)
sb.append("DeleteOnTermination: ").append(getDeleteOnTermination()).append(",");
if (getEncrypted() != null)
sb.append("Encrypted: ").append(getEncrypted()).append(",");
if (getIops() != null)
sb.append("Iops: ").append(getIops()).append(",");
if (getSnapshotId() != null)
sb.append("SnapshotId: ").append(getSnapshotId()).append(",");
if (getVolumeSize() != null)
sb.append("VolumeSize: ").append(getVolumeSize()).append(",");
if (getVolumeType() != null)
sb.append("VolumeType: ").append(getVolumeType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails == false)
return false;
AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails other = (AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails) obj;
if (other.getDeleteOnTermination() == null ^ this.getDeleteOnTermination() == null)
return false;
if (other.getDeleteOnTermination() != null && other.getDeleteOnTermination().equals(this.getDeleteOnTermination()) == 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.getIops() == null ^ this.getIops() == null)
return false;
if (other.getIops() != null && other.getIops().equals(this.getIops()) == 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.getVolumeSize() == null ^ this.getVolumeSize() == null)
return false;
if (other.getVolumeSize() != null && other.getVolumeSize().equals(this.getVolumeSize()) == false)
return false;
if (other.getVolumeType() == null ^ this.getVolumeType() == null)
return false;
if (other.getVolumeType() != null && other.getVolumeType().equals(this.getVolumeType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDeleteOnTermination() == null) ? 0 : getDeleteOnTermination().hashCode());
hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode());
hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode());
hashCode = prime * hashCode + ((getSnapshotId() == null) ? 0 : getSnapshotId().hashCode());
hashCode = prime * hashCode + ((getVolumeSize() == null) ? 0 : getVolumeSize().hashCode());
hashCode = prime * hashCode + ((getVolumeType() == null) ? 0 : getVolumeType().hashCode());
return hashCode;
}
@Override
public AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails clone() {
try {
return (AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.securityhub.model.transform.AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetailsMarshaller.getInstance().marshall(
this, protocolMarshaller);
}
}