/* * 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.quicksight.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Dataset configuration. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DataSetConfiguration implements Serializable, Cloneable, StructuredPojo { /** ** Placeholder. *
*/ private String placeholder; /** ** Dataset schema. *
*/ private DataSetSchema dataSetSchema; /** ** A structure containing the list of column group schemas. *
*/ private java.util.List* Placeholder. *
* * @param placeholder * Placeholder. */ public void setPlaceholder(String placeholder) { this.placeholder = placeholder; } /** ** Placeholder. *
* * @return Placeholder. */ public String getPlaceholder() { return this.placeholder; } /** ** Placeholder. *
* * @param placeholder * Placeholder. * @return Returns a reference to this object so that method calls can be chained together. */ public DataSetConfiguration withPlaceholder(String placeholder) { setPlaceholder(placeholder); return this; } /** ** Dataset schema. *
* * @param dataSetSchema * Dataset schema. */ public void setDataSetSchema(DataSetSchema dataSetSchema) { this.dataSetSchema = dataSetSchema; } /** ** Dataset schema. *
* * @return Dataset schema. */ public DataSetSchema getDataSetSchema() { return this.dataSetSchema; } /** ** Dataset schema. *
* * @param dataSetSchema * Dataset schema. * @return Returns a reference to this object so that method calls can be chained together. */ public DataSetConfiguration withDataSetSchema(DataSetSchema dataSetSchema) { setDataSetSchema(dataSetSchema); return this; } /** ** A structure containing the list of column group schemas. *
* * @return A structure containing the list of column group schemas. */ public java.util.List* A structure containing the list of column group schemas. *
* * @param columnGroupSchemaList * A structure containing the list of column group schemas. */ public void setColumnGroupSchemaList(java.util.Collection* A structure containing the list of column group schemas. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setColumnGroupSchemaList(java.util.Collection)} or * {@link #withColumnGroupSchemaList(java.util.Collection)} if you want to override the existing values. *
* * @param columnGroupSchemaList * A structure containing the list of column group schemas. * @return Returns a reference to this object so that method calls can be chained together. */ public DataSetConfiguration withColumnGroupSchemaList(ColumnGroupSchema... columnGroupSchemaList) { if (this.columnGroupSchemaList == null) { setColumnGroupSchemaList(new java.util.ArrayList* A structure containing the list of column group schemas. *
* * @param columnGroupSchemaList * A structure containing the list of column group schemas. * @return Returns a reference to this object so that method calls can be chained together. */ public DataSetConfiguration withColumnGroupSchemaList(java.util.Collection