com.amazonaws.services.frauddetector.model.Detector Maven / Gradle / Ivy
Show all versions of aws-java-sdk-frauddetector Show documentation
/*
* 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.frauddetector.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The detector.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Detector implements Serializable, Cloneable, StructuredPojo {
/**
*
* The detector ID.
*
*/
private String detectorId;
/**
*
* The detector description.
*
*/
private String description;
/**
*
* The name of the event type.
*
*/
private String eventTypeName;
/**
*
* Timestamp of when the detector was last updated.
*
*/
private String lastUpdatedTime;
/**
*
* Timestamp of when the detector was created.
*
*/
private String createdTime;
/**
*
* The detector ARN.
*
*/
private String arn;
/**
*
* The detector ID.
*
*
* @param detectorId
* The detector ID.
*/
public void setDetectorId(String detectorId) {
this.detectorId = detectorId;
}
/**
*
* The detector ID.
*
*
* @return The detector ID.
*/
public String getDetectorId() {
return this.detectorId;
}
/**
*
* The detector ID.
*
*
* @param detectorId
* The detector ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withDetectorId(String detectorId) {
setDetectorId(detectorId);
return this;
}
/**
*
* The detector description.
*
*
* @param description
* The detector description.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* The detector description.
*
*
* @return The detector description.
*/
public String getDescription() {
return this.description;
}
/**
*
* The detector description.
*
*
* @param description
* The detector description.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The name of the event type.
*
*
* @param eventTypeName
* The name of the event type.
*/
public void setEventTypeName(String eventTypeName) {
this.eventTypeName = eventTypeName;
}
/**
*
* The name of the event type.
*
*
* @return The name of the event type.
*/
public String getEventTypeName() {
return this.eventTypeName;
}
/**
*
* The name of the event type.
*
*
* @param eventTypeName
* The name of the event type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withEventTypeName(String eventTypeName) {
setEventTypeName(eventTypeName);
return this;
}
/**
*
* Timestamp of when the detector was last updated.
*
*
* @param lastUpdatedTime
* Timestamp of when the detector was last updated.
*/
public void setLastUpdatedTime(String lastUpdatedTime) {
this.lastUpdatedTime = lastUpdatedTime;
}
/**
*
* Timestamp of when the detector was last updated.
*
*
* @return Timestamp of when the detector was last updated.
*/
public String getLastUpdatedTime() {
return this.lastUpdatedTime;
}
/**
*
* Timestamp of when the detector was last updated.
*
*
* @param lastUpdatedTime
* Timestamp of when the detector was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withLastUpdatedTime(String lastUpdatedTime) {
setLastUpdatedTime(lastUpdatedTime);
return this;
}
/**
*
* Timestamp of when the detector was created.
*
*
* @param createdTime
* Timestamp of when the detector was created.
*/
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
/**
*
* Timestamp of when the detector was created.
*
*
* @return Timestamp of when the detector was created.
*/
public String getCreatedTime() {
return this.createdTime;
}
/**
*
* Timestamp of when the detector was created.
*
*
* @param createdTime
* Timestamp of when the detector was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withCreatedTime(String createdTime) {
setCreatedTime(createdTime);
return this;
}
/**
*
* The detector ARN.
*
*
* @param arn
* The detector ARN.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The detector ARN.
*
*
* @return The detector ARN.
*/
public String getArn() {
return this.arn;
}
/**
*
* The detector ARN.
*
*
* @param arn
* The detector ARN.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Detector withArn(String arn) {
setArn(arn);
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 (getDetectorId() != null)
sb.append("DetectorId: ").append(getDetectorId()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getEventTypeName() != null)
sb.append("EventTypeName: ").append(getEventTypeName()).append(",");
if (getLastUpdatedTime() != null)
sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()).append(",");
if (getCreatedTime() != null)
sb.append("CreatedTime: ").append(getCreatedTime()).append(",");
if (getArn() != null)
sb.append("Arn: ").append(getArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Detector == false)
return false;
Detector other = (Detector) obj;
if (other.getDetectorId() == null ^ this.getDetectorId() == null)
return false;
if (other.getDetectorId() != null && other.getDetectorId().equals(this.getDetectorId()) == 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.getEventTypeName() == null ^ this.getEventTypeName() == null)
return false;
if (other.getEventTypeName() != null && other.getEventTypeName().equals(this.getEventTypeName()) == false)
return false;
if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null)
return false;
if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false)
return false;
if (other.getCreatedTime() == null ^ this.getCreatedTime() == null)
return false;
if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false)
return false;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDetectorId() == null) ? 0 : getDetectorId().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getEventTypeName() == null) ? 0 : getEventTypeName().hashCode());
hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode());
hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode());
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
return hashCode;
}
@Override
public Detector clone() {
try {
return (Detector) 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.frauddetector.model.transform.DetectorMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}