/* * 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; /** *
* A physical table type built from the results of the custom SQL query. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CustomSql implements Serializable, Cloneable, StructuredPojo { /** ** The Amazon Resource Name (ARN) of the data source. *
*/ private String dataSourceArn; /** ** A display name for the SQL query result. *
*/ private String name; /** ** The SQL query. *
*/ private String sqlQuery; /** ** The column schema from the SQL query result set. *
*/ private java.util.List* The Amazon Resource Name (ARN) of the data source. *
* * @param dataSourceArn * The Amazon Resource Name (ARN) of the data source. */ public void setDataSourceArn(String dataSourceArn) { this.dataSourceArn = dataSourceArn; } /** ** The Amazon Resource Name (ARN) of the data source. *
* * @return The Amazon Resource Name (ARN) of the data source. */ public String getDataSourceArn() { return this.dataSourceArn; } /** ** The Amazon Resource Name (ARN) of the data source. *
* * @param dataSourceArn * The Amazon Resource Name (ARN) of the data source. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withDataSourceArn(String dataSourceArn) { setDataSourceArn(dataSourceArn); return this; } /** ** A display name for the SQL query result. *
* * @param name * A display name for the SQL query result. */ public void setName(String name) { this.name = name; } /** ** A display name for the SQL query result. *
* * @return A display name for the SQL query result. */ public String getName() { return this.name; } /** ** A display name for the SQL query result. *
* * @param name * A display name for the SQL query result. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withName(String name) { setName(name); return this; } /** ** The SQL query. *
* * @param sqlQuery * The SQL query. */ public void setSqlQuery(String sqlQuery) { this.sqlQuery = sqlQuery; } /** ** The SQL query. *
* * @return The SQL query. */ public String getSqlQuery() { return this.sqlQuery; } /** ** The SQL query. *
* * @param sqlQuery * The SQL query. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withSqlQuery(String sqlQuery) { setSqlQuery(sqlQuery); return this; } /** ** The column schema from the SQL query result set. *
* * @return The column schema from the SQL query result set. */ public java.util.List* The column schema from the SQL query result set. *
* * @param columns * The column schema from the SQL query result set. */ public void setColumns(java.util.Collection* The column schema from the SQL query result set. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setColumns(java.util.Collection)} or {@link #withColumns(java.util.Collection)} if you want to override * the existing values. *
* * @param columns * The column schema from the SQL query result set. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withColumns(InputColumn... columns) { if (this.columns == null) { setColumns(new java.util.ArrayList* The column schema from the SQL query result set. *
* * @param columns * The column schema from the SQL query result set. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withColumns(java.util.Collection