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

com.amazonaws.services.personalize.model.CreateDataDeletionJobRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
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.personalize.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 CreateDataDeletionJobRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name for the data deletion job. *

*/ private String jobName; /** *

* The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. *

*/ private String datasetGroupArn; /** *

* The Amazon S3 bucket that contains the list of userIds of the users to delete. *

*/ private DataSource dataSource; /** *

* The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. *

*/ private String roleArn; /** *

* A list of tags to apply to * the data deletion job. *

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

* The name for the data deletion job. *

* * @param jobName * The name for the data deletion job. */ public void setJobName(String jobName) { this.jobName = jobName; } /** *

* The name for the data deletion job. *

* * @return The name for the data deletion job. */ public String getJobName() { return this.jobName; } /** *

* The name for the data deletion job. *

* * @param jobName * The name for the data deletion job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest withJobName(String jobName) { setJobName(jobName); return this; } /** *

* The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. *

* * @param datasetGroupArn * The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. */ public void setDatasetGroupArn(String datasetGroupArn) { this.datasetGroupArn = datasetGroupArn; } /** *

* The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. *

* * @return The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records * from. */ public String getDatasetGroupArn() { return this.datasetGroupArn; } /** *

* The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. *

* * @param datasetGroupArn * The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest withDatasetGroupArn(String datasetGroupArn) { setDatasetGroupArn(datasetGroupArn); return this; } /** *

* The Amazon S3 bucket that contains the list of userIds of the users to delete. *

* * @param dataSource * The Amazon S3 bucket that contains the list of userIds of the users to delete. */ public void setDataSource(DataSource dataSource) { this.dataSource = dataSource; } /** *

* The Amazon S3 bucket that contains the list of userIds of the users to delete. *

* * @return The Amazon S3 bucket that contains the list of userIds of the users to delete. */ public DataSource getDataSource() { return this.dataSource; } /** *

* The Amazon S3 bucket that contains the list of userIds of the users to delete. *

* * @param dataSource * The Amazon S3 bucket that contains the list of userIds of the users to delete. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest withDataSource(DataSource dataSource) { setDataSource(dataSource); return this; } /** *

* The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. *

* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data * source. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. *

* * @return The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data * source. */ public String getRoleArn() { return this.roleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. *

* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data * source. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* A list of tags to apply to * the data deletion job. *

* * @return A list of tags to * apply to the data deletion job. */ public java.util.List getTags() { return tags; } /** *

* A list of tags to apply to * the data deletion job. *

* * @param tags * A list of tags to * apply to the data deletion job. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* A list of tags to apply to * the data deletion job. *

*

* 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 list of tags to * apply to the data deletion job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest 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 list of tags to apply to * the data deletion job. *

* * @param tags * A list of tags to * apply to the data deletion job. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDataDeletionJobRequest 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 (getJobName() != null) sb.append("JobName: ").append(getJobName()).append(","); if (getDatasetGroupArn() != null) sb.append("DatasetGroupArn: ").append(getDatasetGroupArn()).append(","); if (getDataSource() != null) sb.append("DataSource: ").append(getDataSource()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).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 CreateDataDeletionJobRequest == false) return false; CreateDataDeletionJobRequest other = (CreateDataDeletionJobRequest) obj; if (other.getJobName() == null ^ this.getJobName() == null) return false; if (other.getJobName() != null && other.getJobName().equals(this.getJobName()) == false) return false; if (other.getDatasetGroupArn() == null ^ this.getDatasetGroupArn() == null) return false; if (other.getDatasetGroupArn() != null && other.getDatasetGroupArn().equals(this.getDatasetGroupArn()) == false) return false; if (other.getDataSource() == null ^ this.getDataSource() == null) return false; if (other.getDataSource() != null && other.getDataSource().equals(this.getDataSource()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == 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 + ((getJobName() == null) ? 0 : getJobName().hashCode()); hashCode = prime * hashCode + ((getDatasetGroupArn() == null) ? 0 : getDatasetGroupArn().hashCode()); hashCode = prime * hashCode + ((getDataSource() == null) ? 0 : getDataSource().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateDataDeletionJobRequest clone() { return (CreateDataDeletionJobRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy