/* * Copyright 2018-2023 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.guardduty.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains the Amazon Resource Name (ARN) of the resource to publish to, such as an S3 bucket, and the ARN of the KMS * key to use to encrypt published findings. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DestinationProperties implements Serializable, Cloneable, StructuredPojo { /** ** The ARN of the resource to publish to. *
*
* To specify an S3 bucket folder use the following format: arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*
* The ARN of the KMS key to use for encryption. *
*/ private String kmsKeyArn; /** ** The ARN of the resource to publish to. *
*
* To specify an S3 bucket folder use the following format: arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*
* To specify an S3 bucket folder use the following format:
* arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*/
public void setDestinationArn(String destinationArn) {
this.destinationArn = destinationArn;
}
/**
*
* The ARN of the resource to publish to. *
*
* To specify an S3 bucket folder use the following format: arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*
* To specify an S3 bucket folder use the following format:
* arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*/
public String getDestinationArn() {
return this.destinationArn;
}
/**
*
* The ARN of the resource to publish to. *
*
* To specify an S3 bucket folder use the following format: arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
*
* To specify an S3 bucket folder use the following format:
* arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DestinationProperties withDestinationArn(String destinationArn) {
setDestinationArn(destinationArn);
return this;
}
/**
*
* The ARN of the KMS key to use for encryption. *
* * @param kmsKeyArn * The ARN of the KMS key to use for encryption. */ public void setKmsKeyArn(String kmsKeyArn) { this.kmsKeyArn = kmsKeyArn; } /** ** The ARN of the KMS key to use for encryption. *
* * @return The ARN of the KMS key to use for encryption. */ public String getKmsKeyArn() { return this.kmsKeyArn; } /** ** The ARN of the KMS key to use for encryption. *
* * @param kmsKeyArn * The ARN of the KMS key to use for encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public DestinationProperties withKmsKeyArn(String kmsKeyArn) { setKmsKeyArn(kmsKeyArn); 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 (getDestinationArn() != null) sb.append("DestinationArn: ").append(getDestinationArn()).append(","); if (getKmsKeyArn() != null) sb.append("KmsKeyArn: ").append(getKmsKeyArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DestinationProperties == false) return false; DestinationProperties other = (DestinationProperties) obj; if (other.getDestinationArn() == null ^ this.getDestinationArn() == null) return false; if (other.getDestinationArn() != null && other.getDestinationArn().equals(this.getDestinationArn()) == false) return false; if (other.getKmsKeyArn() == null ^ this.getKmsKeyArn() == null) return false; if (other.getKmsKeyArn() != null && other.getKmsKeyArn().equals(this.getKmsKeyArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDestinationArn() == null) ? 0 : getDestinationArn().hashCode()); hashCode = prime * hashCode + ((getKmsKeyArn() == null) ? 0 : getKmsKeyArn().hashCode()); return hashCode; } @Override public DestinationProperties clone() { try { return (DestinationProperties) 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.guardduty.model.transform.DestinationPropertiesMarshaller.getInstance().marshall(this, protocolMarshaller); } }