/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The properties of a table. See Also:
AWS
* API Reference
The name of the table.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the table.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the table.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the table.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the table.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the table.
*/ inline TableMember& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the table.
*/ inline TableMember& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the table.
*/ inline TableMember& WithName(const char* value) { SetName(value); return *this;} /** *The schema containing the table.
*/ inline const Aws::String& GetSchema() const{ return m_schema; } /** *The schema containing the table.
*/ inline bool SchemaHasBeenSet() const { return m_schemaHasBeenSet; } /** *The schema containing the table.
*/ inline void SetSchema(const Aws::String& value) { m_schemaHasBeenSet = true; m_schema = value; } /** *The schema containing the table.
*/ inline void SetSchema(Aws::String&& value) { m_schemaHasBeenSet = true; m_schema = std::move(value); } /** *The schema containing the table.
*/ inline void SetSchema(const char* value) { m_schemaHasBeenSet = true; m_schema.assign(value); } /** *The schema containing the table.
*/ inline TableMember& WithSchema(const Aws::String& value) { SetSchema(value); return *this;} /** *The schema containing the table.
*/ inline TableMember& WithSchema(Aws::String&& value) { SetSchema(std::move(value)); return *this;} /** *The schema containing the table.
*/ inline TableMember& WithSchema(const char* value) { SetSchema(value); return *this;} /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline const Aws::String& GetType() const{ return m_type; } /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline TableMember& WithType(const Aws::String& value) { SetType(value); return *this;} /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline TableMember& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, * GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
*/ inline TableMember& WithType(const char* value) { SetType(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_schema; bool m_schemaHasBeenSet = false; Aws::String m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace RedshiftDataAPIService } // namespace Aws