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

com.amazonaws.services.lookoutequipment.model.ImportDatasetRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * 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.lookoutequipment.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 ImportDatasetRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The Amazon Resource Name (ARN) of the dataset to import. *

*/ private String sourceDatasetArn; /** *

* The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the * source dataset. *

*/ private String datasetName; /** *

* A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *

*/ private String clientToken; /** *

* Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. *

*/ private String serverSideKmsKeyId; /** *

* Any tags associated with the dataset to be created. *

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

* The Amazon Resource Name (ARN) of the dataset to import. *

* * @param sourceDatasetArn * The Amazon Resource Name (ARN) of the dataset to import. */ public void setSourceDatasetArn(String sourceDatasetArn) { this.sourceDatasetArn = sourceDatasetArn; } /** *

* The Amazon Resource Name (ARN) of the dataset to import. *

* * @return The Amazon Resource Name (ARN) of the dataset to import. */ public String getSourceDatasetArn() { return this.sourceDatasetArn; } /** *

* The Amazon Resource Name (ARN) of the dataset to import. *

* * @param sourceDatasetArn * The Amazon Resource Name (ARN) of the dataset to import. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest withSourceDatasetArn(String sourceDatasetArn) { setSourceDatasetArn(sourceDatasetArn); return this; } /** *

* The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the * source dataset. *

* * @param datasetName * The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of * the source dataset. */ public void setDatasetName(String datasetName) { this.datasetName = datasetName; } /** *

* The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the * source dataset. *

* * @return The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of * the source dataset. */ public String getDatasetName() { return this.datasetName; } /** *

* The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the * source dataset. *

* * @param datasetName * The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for * Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of * the source dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest withDatasetName(String datasetName) { setDatasetName(datasetName); return this; } /** *

* A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *

* * @param clientToken * A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *

* * @return A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. */ public String getClientToken() { return this.clientToken; } /** *

* A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *

* * @param clientToken * A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. *

* * @param serverSideKmsKeyId * Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. */ public void setServerSideKmsKeyId(String serverSideKmsKeyId) { this.serverSideKmsKeyId = serverSideKmsKeyId; } /** *

* Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. *

* * @return Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. */ public String getServerSideKmsKeyId() { return this.serverSideKmsKeyId; } /** *

* Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. *

* * @param serverSideKmsKeyId * Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest withServerSideKmsKeyId(String serverSideKmsKeyId) { setServerSideKmsKeyId(serverSideKmsKeyId); return this; } /** *

* Any tags associated with the dataset to be created. *

* * @return Any tags associated with the dataset to be created. */ public java.util.List getTags() { return tags; } /** *

* Any tags associated with the dataset to be created. *

* * @param tags * Any tags associated with the dataset to be created. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* Any tags associated with the dataset to be created. *

*

* 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 * Any tags associated with the dataset to be created. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* Any tags associated with the dataset to be created. *

* * @param tags * Any tags associated with the dataset to be created. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportDatasetRequest 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 (getSourceDatasetArn() != null) sb.append("SourceDatasetArn: ").append(getSourceDatasetArn()).append(","); if (getDatasetName() != null) sb.append("DatasetName: ").append(getDatasetName()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getServerSideKmsKeyId() != null) sb.append("ServerSideKmsKeyId: ").append(getServerSideKmsKeyId()).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 ImportDatasetRequest == false) return false; ImportDatasetRequest other = (ImportDatasetRequest) obj; if (other.getSourceDatasetArn() == null ^ this.getSourceDatasetArn() == null) return false; if (other.getSourceDatasetArn() != null && other.getSourceDatasetArn().equals(this.getSourceDatasetArn()) == false) return false; if (other.getDatasetName() == null ^ this.getDatasetName() == null) return false; if (other.getDatasetName() != null && other.getDatasetName().equals(this.getDatasetName()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getServerSideKmsKeyId() == null ^ this.getServerSideKmsKeyId() == null) return false; if (other.getServerSideKmsKeyId() != null && other.getServerSideKmsKeyId().equals(this.getServerSideKmsKeyId()) == 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 + ((getSourceDatasetArn() == null) ? 0 : getSourceDatasetArn().hashCode()); hashCode = prime * hashCode + ((getDatasetName() == null) ? 0 : getDatasetName().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getServerSideKmsKeyId() == null) ? 0 : getServerSideKmsKeyId().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public ImportDatasetRequest clone() { return (ImportDatasetRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy