/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Glue { namespace Model { /** *

Specifies a connector to an Amazon Athena data source.

See * Also:

AWS * API Reference

*/ class AthenaConnectorSource { public: AWS_GLUE_API AthenaConnectorSource(); AWS_GLUE_API AthenaConnectorSource(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API AthenaConnectorSource& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the data source.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the data source.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the data source.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the data source.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the data source.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the data source.

*/ inline AthenaConnectorSource& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the data source.

*/ inline AthenaConnectorSource& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the data source.

*/ inline AthenaConnectorSource& WithName(const char* value) { SetName(value); return *this;} /** *

The name of the connection that is associated with the connector.

*/ inline const Aws::String& GetConnectionName() const{ return m_connectionName; } /** *

The name of the connection that is associated with the connector.

*/ inline bool ConnectionNameHasBeenSet() const { return m_connectionNameHasBeenSet; } /** *

The name of the connection that is associated with the connector.

*/ inline void SetConnectionName(const Aws::String& value) { m_connectionNameHasBeenSet = true; m_connectionName = value; } /** *

The name of the connection that is associated with the connector.

*/ inline void SetConnectionName(Aws::String&& value) { m_connectionNameHasBeenSet = true; m_connectionName = std::move(value); } /** *

The name of the connection that is associated with the connector.

*/ inline void SetConnectionName(const char* value) { m_connectionNameHasBeenSet = true; m_connectionName.assign(value); } /** *

The name of the connection that is associated with the connector.

*/ inline AthenaConnectorSource& WithConnectionName(const Aws::String& value) { SetConnectionName(value); return *this;} /** *

The name of the connection that is associated with the connector.

*/ inline AthenaConnectorSource& WithConnectionName(Aws::String&& value) { SetConnectionName(std::move(value)); return *this;} /** *

The name of the connection that is associated with the connector.

*/ inline AthenaConnectorSource& WithConnectionName(const char* value) { SetConnectionName(value); return *this;} /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline const Aws::String& GetConnectorName() const{ return m_connectorName; } /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline bool ConnectorNameHasBeenSet() const { return m_connectorNameHasBeenSet; } /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline void SetConnectorName(const Aws::String& value) { m_connectorNameHasBeenSet = true; m_connectorName = value; } /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline void SetConnectorName(Aws::String&& value) { m_connectorNameHasBeenSet = true; m_connectorName = std::move(value); } /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline void SetConnectorName(const char* value) { m_connectorNameHasBeenSet = true; m_connectorName.assign(value); } /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline AthenaConnectorSource& WithConnectorName(const Aws::String& value) { SetConnectorName(value); return *this;} /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline AthenaConnectorSource& WithConnectorName(Aws::String&& value) { SetConnectorName(std::move(value)); return *this;} /** *

The name of a connector that assists with accessing the data store in Glue * Studio.

*/ inline AthenaConnectorSource& WithConnectorName(const char* value) { SetConnectorName(value); return *this;} /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline const Aws::String& GetConnectionType() const{ return m_connectionType; } /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline bool ConnectionTypeHasBeenSet() const { return m_connectionTypeHasBeenSet; } /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline void SetConnectionType(const Aws::String& value) { m_connectionTypeHasBeenSet = true; m_connectionType = value; } /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline void SetConnectionType(Aws::String&& value) { m_connectionTypeHasBeenSet = true; m_connectionType = std::move(value); } /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline void SetConnectionType(const char* value) { m_connectionTypeHasBeenSet = true; m_connectionType.assign(value); } /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline AthenaConnectorSource& WithConnectionType(const Aws::String& value) { SetConnectionType(value); return *this;} /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline AthenaConnectorSource& WithConnectionType(Aws::String&& value) { SetConnectionType(std::move(value)); return *this;} /** *

The type of connection, such as marketplace.athena or custom.athena, * designating a connection to an Amazon Athena data store.

*/ inline AthenaConnectorSource& WithConnectionType(const char* value) { SetConnectionType(value); return *this;} /** *

The name of the table in the data source.

*/ inline const Aws::String& GetConnectionTable() const{ return m_connectionTable; } /** *

The name of the table in the data source.

*/ inline bool ConnectionTableHasBeenSet() const { return m_connectionTableHasBeenSet; } /** *

The name of the table in the data source.

*/ inline void SetConnectionTable(const Aws::String& value) { m_connectionTableHasBeenSet = true; m_connectionTable = value; } /** *

The name of the table in the data source.

*/ inline void SetConnectionTable(Aws::String&& value) { m_connectionTableHasBeenSet = true; m_connectionTable = std::move(value); } /** *

The name of the table in the data source.

*/ inline void SetConnectionTable(const char* value) { m_connectionTableHasBeenSet = true; m_connectionTable.assign(value); } /** *

The name of the table in the data source.

*/ inline AthenaConnectorSource& WithConnectionTable(const Aws::String& value) { SetConnectionTable(value); return *this;} /** *

The name of the table in the data source.

*/ inline AthenaConnectorSource& WithConnectionTable(Aws::String&& value) { SetConnectionTable(std::move(value)); return *this;} /** *

The name of the table in the data source.

*/ inline AthenaConnectorSource& WithConnectionTable(const char* value) { SetConnectionTable(value); return *this;} /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline const Aws::String& GetSchemaName() const{ return m_schemaName; } /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; } /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline void SetSchemaName(const Aws::String& value) { m_schemaNameHasBeenSet = true; m_schemaName = value; } /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline void SetSchemaName(Aws::String&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::move(value); } /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline void SetSchemaName(const char* value) { m_schemaNameHasBeenSet = true; m_schemaName.assign(value); } /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline AthenaConnectorSource& WithSchemaName(const Aws::String& value) { SetSchemaName(value); return *this;} /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline AthenaConnectorSource& WithSchemaName(Aws::String&& value) { SetSchemaName(std::move(value)); return *this;} /** *

The name of the Cloudwatch log group to read from. For example, * /aws-glue/jobs/output.

*/ inline AthenaConnectorSource& WithSchemaName(const char* value) { SetSchemaName(value); return *this;} /** *

Specifies the data schema for the custom Athena source.

*/ inline const Aws::Vector& GetOutputSchemas() const{ return m_outputSchemas; } /** *

Specifies the data schema for the custom Athena source.

*/ inline bool OutputSchemasHasBeenSet() const { return m_outputSchemasHasBeenSet; } /** *

Specifies the data schema for the custom Athena source.

*/ inline void SetOutputSchemas(const Aws::Vector& value) { m_outputSchemasHasBeenSet = true; m_outputSchemas = value; } /** *

Specifies the data schema for the custom Athena source.

*/ inline void SetOutputSchemas(Aws::Vector&& value) { m_outputSchemasHasBeenSet = true; m_outputSchemas = std::move(value); } /** *

Specifies the data schema for the custom Athena source.

*/ inline AthenaConnectorSource& WithOutputSchemas(const Aws::Vector& value) { SetOutputSchemas(value); return *this;} /** *

Specifies the data schema for the custom Athena source.

*/ inline AthenaConnectorSource& WithOutputSchemas(Aws::Vector&& value) { SetOutputSchemas(std::move(value)); return *this;} /** *

Specifies the data schema for the custom Athena source.

*/ inline AthenaConnectorSource& AddOutputSchemas(const GlueSchema& value) { m_outputSchemasHasBeenSet = true; m_outputSchemas.push_back(value); return *this; } /** *

Specifies the data schema for the custom Athena source.

*/ inline AthenaConnectorSource& AddOutputSchemas(GlueSchema&& value) { m_outputSchemasHasBeenSet = true; m_outputSchemas.push_back(std::move(value)); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_connectionName; bool m_connectionNameHasBeenSet = false; Aws::String m_connectorName; bool m_connectorNameHasBeenSet = false; Aws::String m_connectionType; bool m_connectionTypeHasBeenSet = false; Aws::String m_connectionTable; bool m_connectionTableHasBeenSet = false; Aws::String m_schemaName; bool m_schemaNameHasBeenSet = false; Aws::Vector m_outputSchemas; bool m_outputSchemasHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws