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

com.amazonaws.services.frauddetector.model.PutExternalModelRequest Maven / Gradle / Ivy

Go to download

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

The 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.frauddetector.model;

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

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* The model endpoints name. *

*/ private String modelEndpoint; /** *

* The source of the model. *

*/ private String modelSource; /** *

* The IAM role used to invoke the model endpoint. *

*/ private String invokeModelEndpointRoleArn; /** *

* The model endpoint input configuration. *

*/ private ModelInputConfiguration inputConfiguration; /** *

* The model endpoint output configuration. *

*/ private ModelOutputConfiguration outputConfiguration; /** *

* The model endpoint’s status in Amazon Fraud Detector. *

*/ private String modelEndpointStatus; /** *

* A collection of key and value pairs. *

*/ private java.util.List tags; /** *

* The model endpoints name. *

* * @param modelEndpoint * The model endpoints name. */ public void setModelEndpoint(String modelEndpoint) { this.modelEndpoint = modelEndpoint; } /** *

* The model endpoints name. *

* * @return The model endpoints name. */ public String getModelEndpoint() { return this.modelEndpoint; } /** *

* The model endpoints name. *

* * @param modelEndpoint * The model endpoints name. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withModelEndpoint(String modelEndpoint) { setModelEndpoint(modelEndpoint); return this; } /** *

* The source of the model. *

* * @param modelSource * The source of the model. * @see ModelSource */ public void setModelSource(String modelSource) { this.modelSource = modelSource; } /** *

* The source of the model. *

* * @return The source of the model. * @see ModelSource */ public String getModelSource() { return this.modelSource; } /** *

* The source of the model. *

* * @param modelSource * The source of the model. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelSource */ public PutExternalModelRequest withModelSource(String modelSource) { setModelSource(modelSource); return this; } /** *

* The source of the model. *

* * @param modelSource * The source of the model. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelSource */ public PutExternalModelRequest withModelSource(ModelSource modelSource) { this.modelSource = modelSource.toString(); return this; } /** *

* The IAM role used to invoke the model endpoint. *

* * @param invokeModelEndpointRoleArn * The IAM role used to invoke the model endpoint. */ public void setInvokeModelEndpointRoleArn(String invokeModelEndpointRoleArn) { this.invokeModelEndpointRoleArn = invokeModelEndpointRoleArn; } /** *

* The IAM role used to invoke the model endpoint. *

* * @return The IAM role used to invoke the model endpoint. */ public String getInvokeModelEndpointRoleArn() { return this.invokeModelEndpointRoleArn; } /** *

* The IAM role used to invoke the model endpoint. *

* * @param invokeModelEndpointRoleArn * The IAM role used to invoke the model endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withInvokeModelEndpointRoleArn(String invokeModelEndpointRoleArn) { setInvokeModelEndpointRoleArn(invokeModelEndpointRoleArn); return this; } /** *

* The model endpoint input configuration. *

* * @param inputConfiguration * The model endpoint input configuration. */ public void setInputConfiguration(ModelInputConfiguration inputConfiguration) { this.inputConfiguration = inputConfiguration; } /** *

* The model endpoint input configuration. *

* * @return The model endpoint input configuration. */ public ModelInputConfiguration getInputConfiguration() { return this.inputConfiguration; } /** *

* The model endpoint input configuration. *

* * @param inputConfiguration * The model endpoint input configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withInputConfiguration(ModelInputConfiguration inputConfiguration) { setInputConfiguration(inputConfiguration); return this; } /** *

* The model endpoint output configuration. *

* * @param outputConfiguration * The model endpoint output configuration. */ public void setOutputConfiguration(ModelOutputConfiguration outputConfiguration) { this.outputConfiguration = outputConfiguration; } /** *

* The model endpoint output configuration. *

* * @return The model endpoint output configuration. */ public ModelOutputConfiguration getOutputConfiguration() { return this.outputConfiguration; } /** *

* The model endpoint output configuration. *

* * @param outputConfiguration * The model endpoint output configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withOutputConfiguration(ModelOutputConfiguration outputConfiguration) { setOutputConfiguration(outputConfiguration); return this; } /** *

* The model endpoint’s status in Amazon Fraud Detector. *

* * @param modelEndpointStatus * The model endpoint’s status in Amazon Fraud Detector. * @see ModelEndpointStatus */ public void setModelEndpointStatus(String modelEndpointStatus) { this.modelEndpointStatus = modelEndpointStatus; } /** *

* The model endpoint’s status in Amazon Fraud Detector. *

* * @return The model endpoint’s status in Amazon Fraud Detector. * @see ModelEndpointStatus */ public String getModelEndpointStatus() { return this.modelEndpointStatus; } /** *

* The model endpoint’s status in Amazon Fraud Detector. *

* * @param modelEndpointStatus * The model endpoint’s status in Amazon Fraud Detector. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelEndpointStatus */ public PutExternalModelRequest withModelEndpointStatus(String modelEndpointStatus) { setModelEndpointStatus(modelEndpointStatus); return this; } /** *

* The model endpoint’s status in Amazon Fraud Detector. *

* * @param modelEndpointStatus * The model endpoint’s status in Amazon Fraud Detector. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelEndpointStatus */ public PutExternalModelRequest withModelEndpointStatus(ModelEndpointStatus modelEndpointStatus) { this.modelEndpointStatus = modelEndpointStatus.toString(); return this; } /** *

* A collection of key and value pairs. *

* * @return A collection of key and value pairs. */ public java.util.List getTags() { return tags; } /** *

* A collection of key and value pairs. *

* * @param tags * A collection of key and value pairs. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* A collection of key and value pairs. *

*

* 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 * A collection of key and value pairs. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* A collection of key and value pairs. *

* * @param tags * A collection of key and value pairs. * @return Returns a reference to this object so that method calls can be chained together. */ public PutExternalModelRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getModelEndpoint() != null) sb.append("ModelEndpoint: ").append(getModelEndpoint()).append(","); if (getModelSource() != null) sb.append("ModelSource: ").append(getModelSource()).append(","); if (getInvokeModelEndpointRoleArn() != null) sb.append("InvokeModelEndpointRoleArn: ").append(getInvokeModelEndpointRoleArn()).append(","); if (getInputConfiguration() != null) sb.append("InputConfiguration: ").append(getInputConfiguration()).append(","); if (getOutputConfiguration() != null) sb.append("OutputConfiguration: ").append(getOutputConfiguration()).append(","); if (getModelEndpointStatus() != null) sb.append("ModelEndpointStatus: ").append(getModelEndpointStatus()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutExternalModelRequest == false) return false; PutExternalModelRequest other = (PutExternalModelRequest) obj; if (other.getModelEndpoint() == null ^ this.getModelEndpoint() == null) return false; if (other.getModelEndpoint() != null && other.getModelEndpoint().equals(this.getModelEndpoint()) == false) return false; if (other.getModelSource() == null ^ this.getModelSource() == null) return false; if (other.getModelSource() != null && other.getModelSource().equals(this.getModelSource()) == false) return false; if (other.getInvokeModelEndpointRoleArn() == null ^ this.getInvokeModelEndpointRoleArn() == null) return false; if (other.getInvokeModelEndpointRoleArn() != null && other.getInvokeModelEndpointRoleArn().equals(this.getInvokeModelEndpointRoleArn()) == false) return false; if (other.getInputConfiguration() == null ^ this.getInputConfiguration() == null) return false; if (other.getInputConfiguration() != null && other.getInputConfiguration().equals(this.getInputConfiguration()) == false) return false; if (other.getOutputConfiguration() == null ^ this.getOutputConfiguration() == null) return false; if (other.getOutputConfiguration() != null && other.getOutputConfiguration().equals(this.getOutputConfiguration()) == false) return false; if (other.getModelEndpointStatus() == null ^ this.getModelEndpointStatus() == null) return false; if (other.getModelEndpointStatus() != null && other.getModelEndpointStatus().equals(this.getModelEndpointStatus()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getModelEndpoint() == null) ? 0 : getModelEndpoint().hashCode()); hashCode = prime * hashCode + ((getModelSource() == null) ? 0 : getModelSource().hashCode()); hashCode = prime * hashCode + ((getInvokeModelEndpointRoleArn() == null) ? 0 : getInvokeModelEndpointRoleArn().hashCode()); hashCode = prime * hashCode + ((getInputConfiguration() == null) ? 0 : getInputConfiguration().hashCode()); hashCode = prime * hashCode + ((getOutputConfiguration() == null) ? 0 : getOutputConfiguration().hashCode()); hashCode = prime * hashCode + ((getModelEndpointStatus() == null) ? 0 : getModelEndpointStatus().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public PutExternalModelRequest clone() { return (PutExternalModelRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy