
com.amazonaws.services.quicksight.model.DataSetSummary Maven / Gradle / Ivy
/*
* 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.quicksight.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Dataset summary.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DataSetSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the dataset.
*
*/
private String arn;
/**
*
* The ID of the dataset.
*
*/
private String dataSetId;
/**
*
* A display name for the dataset.
*
*/
private String name;
/**
*
* The time that this dataset was created.
*
*/
private java.util.Date createdTime;
/**
*
* The last time that this dataset was updated.
*
*/
private java.util.Date lastUpdatedTime;
/**
*
* A value that indicates whether you want to import the data into SPICE.
*
*/
private String importMode;
/**
*
* The row-level security configuration for the dataset.
*
*/
private RowLevelPermissionDataSet rowLevelPermissionDataSet;
/**
*
* Whether or not the row level permission tags are applied.
*
*/
private Boolean rowLevelPermissionTagConfigurationApplied;
/**
*
* A value that indicates if the dataset has column level permission configured.
*
*/
private Boolean columnLevelPermissionRulesApplied;
/**
*
* The Amazon Resource Name (ARN) of the dataset.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the dataset.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The Amazon Resource Name (ARN) of the dataset.
*
*
* @return The Amazon Resource Name (ARN) of the dataset.
*/
public String getArn() {
return this.arn;
}
/**
*
* The Amazon Resource Name (ARN) of the dataset.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* The ID of the dataset.
*
*
* @param dataSetId
* The ID of the dataset.
*/
public void setDataSetId(String dataSetId) {
this.dataSetId = dataSetId;
}
/**
*
* The ID of the dataset.
*
*
* @return The ID of the dataset.
*/
public String getDataSetId() {
return this.dataSetId;
}
/**
*
* The ID of the dataset.
*
*
* @param dataSetId
* The ID of the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withDataSetId(String dataSetId) {
setDataSetId(dataSetId);
return this;
}
/**
*
* A display name for the dataset.
*
*
* @param name
* A display name for the dataset.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* A display name for the dataset.
*
*
* @return A display name for the dataset.
*/
public String getName() {
return this.name;
}
/**
*
* A display name for the dataset.
*
*
* @param name
* A display name for the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withName(String name) {
setName(name);
return this;
}
/**
*
* The time that this dataset was created.
*
*
* @param createdTime
* The time that this dataset was created.
*/
public void setCreatedTime(java.util.Date createdTime) {
this.createdTime = createdTime;
}
/**
*
* The time that this dataset was created.
*
*
* @return The time that this dataset was created.
*/
public java.util.Date getCreatedTime() {
return this.createdTime;
}
/**
*
* The time that this dataset was created.
*
*
* @param createdTime
* The time that this dataset was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withCreatedTime(java.util.Date createdTime) {
setCreatedTime(createdTime);
return this;
}
/**
*
* The last time that this dataset was updated.
*
*
* @param lastUpdatedTime
* The last time that this dataset was updated.
*/
public void setLastUpdatedTime(java.util.Date lastUpdatedTime) {
this.lastUpdatedTime = lastUpdatedTime;
}
/**
*
* The last time that this dataset was updated.
*
*
* @return The last time that this dataset was updated.
*/
public java.util.Date getLastUpdatedTime() {
return this.lastUpdatedTime;
}
/**
*
* The last time that this dataset was updated.
*
*
* @param lastUpdatedTime
* The last time that this dataset was updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withLastUpdatedTime(java.util.Date lastUpdatedTime) {
setLastUpdatedTime(lastUpdatedTime);
return this;
}
/**
*
* A value that indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* A value that indicates whether you want to import the data into SPICE.
* @see DataSetImportMode
*/
public void setImportMode(String importMode) {
this.importMode = importMode;
}
/**
*
* A value that indicates whether you want to import the data into SPICE.
*
*
* @return A value that indicates whether you want to import the data into SPICE.
* @see DataSetImportMode
*/
public String getImportMode() {
return this.importMode;
}
/**
*
* A value that indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* A value that indicates whether you want to import the data into SPICE.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSetImportMode
*/
public DataSetSummary withImportMode(String importMode) {
setImportMode(importMode);
return this;
}
/**
*
* A value that indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* A value that indicates whether you want to import the data into SPICE.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSetImportMode
*/
public DataSetSummary withImportMode(DataSetImportMode importMode) {
this.importMode = importMode.toString();
return this;
}
/**
*
* The row-level security configuration for the dataset.
*
*
* @param rowLevelPermissionDataSet
* The row-level security configuration for the dataset.
*/
public void setRowLevelPermissionDataSet(RowLevelPermissionDataSet rowLevelPermissionDataSet) {
this.rowLevelPermissionDataSet = rowLevelPermissionDataSet;
}
/**
*
* The row-level security configuration for the dataset.
*
*
* @return The row-level security configuration for the dataset.
*/
public RowLevelPermissionDataSet getRowLevelPermissionDataSet() {
return this.rowLevelPermissionDataSet;
}
/**
*
* The row-level security configuration for the dataset.
*
*
* @param rowLevelPermissionDataSet
* The row-level security configuration for the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withRowLevelPermissionDataSet(RowLevelPermissionDataSet rowLevelPermissionDataSet) {
setRowLevelPermissionDataSet(rowLevelPermissionDataSet);
return this;
}
/**
*
* Whether or not the row level permission tags are applied.
*
*
* @param rowLevelPermissionTagConfigurationApplied
* Whether or not the row level permission tags are applied.
*/
public void setRowLevelPermissionTagConfigurationApplied(Boolean rowLevelPermissionTagConfigurationApplied) {
this.rowLevelPermissionTagConfigurationApplied = rowLevelPermissionTagConfigurationApplied;
}
/**
*
* Whether or not the row level permission tags are applied.
*
*
* @return Whether or not the row level permission tags are applied.
*/
public Boolean getRowLevelPermissionTagConfigurationApplied() {
return this.rowLevelPermissionTagConfigurationApplied;
}
/**
*
* Whether or not the row level permission tags are applied.
*
*
* @param rowLevelPermissionTagConfigurationApplied
* Whether or not the row level permission tags are applied.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withRowLevelPermissionTagConfigurationApplied(Boolean rowLevelPermissionTagConfigurationApplied) {
setRowLevelPermissionTagConfigurationApplied(rowLevelPermissionTagConfigurationApplied);
return this;
}
/**
*
* Whether or not the row level permission tags are applied.
*
*
* @return Whether or not the row level permission tags are applied.
*/
public Boolean isRowLevelPermissionTagConfigurationApplied() {
return this.rowLevelPermissionTagConfigurationApplied;
}
/**
*
* A value that indicates if the dataset has column level permission configured.
*
*
* @param columnLevelPermissionRulesApplied
* A value that indicates if the dataset has column level permission configured.
*/
public void setColumnLevelPermissionRulesApplied(Boolean columnLevelPermissionRulesApplied) {
this.columnLevelPermissionRulesApplied = columnLevelPermissionRulesApplied;
}
/**
*
* A value that indicates if the dataset has column level permission configured.
*
*
* @return A value that indicates if the dataset has column level permission configured.
*/
public Boolean getColumnLevelPermissionRulesApplied() {
return this.columnLevelPermissionRulesApplied;
}
/**
*
* A value that indicates if the dataset has column level permission configured.
*
*
* @param columnLevelPermissionRulesApplied
* A value that indicates if the dataset has column level permission configured.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DataSetSummary withColumnLevelPermissionRulesApplied(Boolean columnLevelPermissionRulesApplied) {
setColumnLevelPermissionRulesApplied(columnLevelPermissionRulesApplied);
return this;
}
/**
*
* A value that indicates if the dataset has column level permission configured.
*
*
* @return A value that indicates if the dataset has column level permission configured.
*/
public Boolean isColumnLevelPermissionRulesApplied() {
return this.columnLevelPermissionRulesApplied;
}
/**
* 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 (getArn() != null)
sb.append("Arn: ").append(getArn()).append(",");
if (getDataSetId() != null)
sb.append("DataSetId: ").append(getDataSetId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getCreatedTime() != null)
sb.append("CreatedTime: ").append(getCreatedTime()).append(",");
if (getLastUpdatedTime() != null)
sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()).append(",");
if (getImportMode() != null)
sb.append("ImportMode: ").append(getImportMode()).append(",");
if (getRowLevelPermissionDataSet() != null)
sb.append("RowLevelPermissionDataSet: ").append(getRowLevelPermissionDataSet()).append(",");
if (getRowLevelPermissionTagConfigurationApplied() != null)
sb.append("RowLevelPermissionTagConfigurationApplied: ").append(getRowLevelPermissionTagConfigurationApplied()).append(",");
if (getColumnLevelPermissionRulesApplied() != null)
sb.append("ColumnLevelPermissionRulesApplied: ").append(getColumnLevelPermissionRulesApplied());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DataSetSummary == false)
return false;
DataSetSummary other = (DataSetSummary) obj;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
if (other.getDataSetId() == null ^ this.getDataSetId() == null)
return false;
if (other.getDataSetId() != null && other.getDataSetId().equals(this.getDataSetId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == 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.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null)
return false;
if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false)
return false;
if (other.getImportMode() == null ^ this.getImportMode() == null)
return false;
if (other.getImportMode() != null && other.getImportMode().equals(this.getImportMode()) == false)
return false;
if (other.getRowLevelPermissionDataSet() == null ^ this.getRowLevelPermissionDataSet() == null)
return false;
if (other.getRowLevelPermissionDataSet() != null && other.getRowLevelPermissionDataSet().equals(this.getRowLevelPermissionDataSet()) == false)
return false;
if (other.getRowLevelPermissionTagConfigurationApplied() == null ^ this.getRowLevelPermissionTagConfigurationApplied() == null)
return false;
if (other.getRowLevelPermissionTagConfigurationApplied() != null
&& other.getRowLevelPermissionTagConfigurationApplied().equals(this.getRowLevelPermissionTagConfigurationApplied()) == false)
return false;
if (other.getColumnLevelPermissionRulesApplied() == null ^ this.getColumnLevelPermissionRulesApplied() == null)
return false;
if (other.getColumnLevelPermissionRulesApplied() != null
&& other.getColumnLevelPermissionRulesApplied().equals(this.getColumnLevelPermissionRulesApplied()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
hashCode = prime * hashCode + ((getDataSetId() == null) ? 0 : getDataSetId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode());
hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode());
hashCode = prime * hashCode + ((getImportMode() == null) ? 0 : getImportMode().hashCode());
hashCode = prime * hashCode + ((getRowLevelPermissionDataSet() == null) ? 0 : getRowLevelPermissionDataSet().hashCode());
hashCode = prime * hashCode
+ ((getRowLevelPermissionTagConfigurationApplied() == null) ? 0 : getRowLevelPermissionTagConfigurationApplied().hashCode());
hashCode = prime * hashCode + ((getColumnLevelPermissionRulesApplied() == null) ? 0 : getColumnLevelPermissionRulesApplied().hashCode());
return hashCode;
}
@Override
public DataSetSummary clone() {
try {
return (DataSetSummary) 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.quicksight.model.transform.DataSetSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}