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

com.amazonaws.services.securityhub.model.AwsS3ObjectDetails Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * 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.securityhub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Details about an Amazon S3 object. *

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

* Indicates when the object was last modified. *

*

* Uses the date-time format specified in RFC * 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be * separated by T. For example, 2020-03-22T13:22:13.933Z. *

*/ private String lastModified; /** *

* The opaque identifier assigned by a web server to a specific version of a resource found at a URL. *

*/ private String eTag; /** *

* The version of the object. *

*/ private String versionId; /** *

* A standard MIME type describing the format of the object data. *

*/ private String contentType; /** *

* If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when * storing this object in Amazon S3. *

*/ private String serverSideEncryption; /** *

* The identifier of the KMS symmetric customer managed key that was used for the object. *

*/ private String sSEKMSKeyId; /** *

* Indicates when the object was last modified. *

*

* Uses the date-time format specified in RFC * 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be * separated by T. For example, 2020-03-22T13:22:13.933Z. *

* * @param lastModified * Indicates when the object was last modified.

*

* Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time * Format. The value cannot contain spaces, and date and time should be separated by T. For * example, 2020-03-22T13:22:13.933Z. */ public void setLastModified(String lastModified) { this.lastModified = lastModified; } /** *

* Indicates when the object was last modified. *

*

* Uses the date-time format specified in RFC * 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be * separated by T. For example, 2020-03-22T13:22:13.933Z. *

* * @return Indicates when the object was last modified.

*

* Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time * Format. The value cannot contain spaces, and date and time should be separated by T. For * example, 2020-03-22T13:22:13.933Z. */ public String getLastModified() { return this.lastModified; } /** *

* Indicates when the object was last modified. *

*

* Uses the date-time format specified in RFC * 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be * separated by T. For example, 2020-03-22T13:22:13.933Z. *

* * @param lastModified * Indicates when the object was last modified.

*

* Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time * Format. The value cannot contain spaces, and date and time should be separated by T. For * example, 2020-03-22T13:22:13.933Z. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withLastModified(String lastModified) { setLastModified(lastModified); return this; } /** *

* The opaque identifier assigned by a web server to a specific version of a resource found at a URL. *

* * @param eTag * The opaque identifier assigned by a web server to a specific version of a resource found at a URL. */ public void setETag(String eTag) { this.eTag = eTag; } /** *

* The opaque identifier assigned by a web server to a specific version of a resource found at a URL. *

* * @return The opaque identifier assigned by a web server to a specific version of a resource found at a URL. */ public String getETag() { return this.eTag; } /** *

* The opaque identifier assigned by a web server to a specific version of a resource found at a URL. *

* * @param eTag * The opaque identifier assigned by a web server to a specific version of a resource found at a URL. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withETag(String eTag) { setETag(eTag); return this; } /** *

* The version of the object. *

* * @param versionId * The version of the object. */ public void setVersionId(String versionId) { this.versionId = versionId; } /** *

* The version of the object. *

* * @return The version of the object. */ public String getVersionId() { return this.versionId; } /** *

* The version of the object. *

* * @param versionId * The version of the object. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withVersionId(String versionId) { setVersionId(versionId); return this; } /** *

* A standard MIME type describing the format of the object data. *

* * @param contentType * A standard MIME type describing the format of the object data. */ public void setContentType(String contentType) { this.contentType = contentType; } /** *

* A standard MIME type describing the format of the object data. *

* * @return A standard MIME type describing the format of the object data. */ public String getContentType() { return this.contentType; } /** *

* A standard MIME type describing the format of the object data. *

* * @param contentType * A standard MIME type describing the format of the object data. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withContentType(String contentType) { setContentType(contentType); return this; } /** *

* If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when * storing this object in Amazon S3. *

* * @param serverSideEncryption * If the object is stored using server-side encryption, the value of the server-side encryption algorithm * used when storing this object in Amazon S3. */ public void setServerSideEncryption(String serverSideEncryption) { this.serverSideEncryption = serverSideEncryption; } /** *

* If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when * storing this object in Amazon S3. *

* * @return If the object is stored using server-side encryption, the value of the server-side encryption algorithm * used when storing this object in Amazon S3. */ public String getServerSideEncryption() { return this.serverSideEncryption; } /** *

* If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when * storing this object in Amazon S3. *

* * @param serverSideEncryption * If the object is stored using server-side encryption, the value of the server-side encryption algorithm * used when storing this object in Amazon S3. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withServerSideEncryption(String serverSideEncryption) { setServerSideEncryption(serverSideEncryption); return this; } /** *

* The identifier of the KMS symmetric customer managed key that was used for the object. *

* * @param sSEKMSKeyId * The identifier of the KMS symmetric customer managed key that was used for the object. */ public void setSSEKMSKeyId(String sSEKMSKeyId) { this.sSEKMSKeyId = sSEKMSKeyId; } /** *

* The identifier of the KMS symmetric customer managed key that was used for the object. *

* * @return The identifier of the KMS symmetric customer managed key that was used for the object. */ public String getSSEKMSKeyId() { return this.sSEKMSKeyId; } /** *

* The identifier of the KMS symmetric customer managed key that was used for the object. *

* * @param sSEKMSKeyId * The identifier of the KMS symmetric customer managed key that was used for the object. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsS3ObjectDetails withSSEKMSKeyId(String sSEKMSKeyId) { setSSEKMSKeyId(sSEKMSKeyId); 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 (getLastModified() != null) sb.append("LastModified: ").append(getLastModified()).append(","); if (getETag() != null) sb.append("ETag: ").append(getETag()).append(","); if (getVersionId() != null) sb.append("VersionId: ").append(getVersionId()).append(","); if (getContentType() != null) sb.append("ContentType: ").append(getContentType()).append(","); if (getServerSideEncryption() != null) sb.append("ServerSideEncryption: ").append(getServerSideEncryption()).append(","); if (getSSEKMSKeyId() != null) sb.append("SSEKMSKeyId: ").append(getSSEKMSKeyId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AwsS3ObjectDetails == false) return false; AwsS3ObjectDetails other = (AwsS3ObjectDetails) obj; if (other.getLastModified() == null ^ this.getLastModified() == null) return false; if (other.getLastModified() != null && other.getLastModified().equals(this.getLastModified()) == false) return false; if (other.getETag() == null ^ this.getETag() == null) return false; if (other.getETag() != null && other.getETag().equals(this.getETag()) == false) return false; if (other.getVersionId() == null ^ this.getVersionId() == null) return false; if (other.getVersionId() != null && other.getVersionId().equals(this.getVersionId()) == false) return false; if (other.getContentType() == null ^ this.getContentType() == null) return false; if (other.getContentType() != null && other.getContentType().equals(this.getContentType()) == false) return false; if (other.getServerSideEncryption() == null ^ this.getServerSideEncryption() == null) return false; if (other.getServerSideEncryption() != null && other.getServerSideEncryption().equals(this.getServerSideEncryption()) == false) return false; if (other.getSSEKMSKeyId() == null ^ this.getSSEKMSKeyId() == null) return false; if (other.getSSEKMSKeyId() != null && other.getSSEKMSKeyId().equals(this.getSSEKMSKeyId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLastModified() == null) ? 0 : getLastModified().hashCode()); hashCode = prime * hashCode + ((getETag() == null) ? 0 : getETag().hashCode()); hashCode = prime * hashCode + ((getVersionId() == null) ? 0 : getVersionId().hashCode()); hashCode = prime * hashCode + ((getContentType() == null) ? 0 : getContentType().hashCode()); hashCode = prime * hashCode + ((getServerSideEncryption() == null) ? 0 : getServerSideEncryption().hashCode()); hashCode = prime * hashCode + ((getSSEKMSKeyId() == null) ? 0 : getSSEKMSKeyId().hashCode()); return hashCode; } @Override public AwsS3ObjectDetails clone() { try { return (AwsS3ObjectDetails) 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.AwsS3ObjectDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy