/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A physical table type for as S3 data source.See Also:
AWS
* API Reference
The amazon Resource Name (ARN) for the data source.
*/ inline const Aws::String& GetDataSourceArn() const{ return m_dataSourceArn; } /** *The amazon Resource Name (ARN) for the data source.
*/ inline bool DataSourceArnHasBeenSet() const { return m_dataSourceArnHasBeenSet; } /** *The amazon Resource Name (ARN) for the data source.
*/ inline void SetDataSourceArn(const Aws::String& value) { m_dataSourceArnHasBeenSet = true; m_dataSourceArn = value; } /** *The amazon Resource Name (ARN) for the data source.
*/ inline void SetDataSourceArn(Aws::String&& value) { m_dataSourceArnHasBeenSet = true; m_dataSourceArn = std::move(value); } /** *The amazon Resource Name (ARN) for the data source.
*/ inline void SetDataSourceArn(const char* value) { m_dataSourceArnHasBeenSet = true; m_dataSourceArn.assign(value); } /** *The amazon Resource Name (ARN) for the data source.
*/ inline S3Source& WithDataSourceArn(const Aws::String& value) { SetDataSourceArn(value); return *this;} /** *The amazon Resource Name (ARN) for the data source.
*/ inline S3Source& WithDataSourceArn(Aws::String&& value) { SetDataSourceArn(std::move(value)); return *this;} /** *The amazon Resource Name (ARN) for the data source.
*/ inline S3Source& WithDataSourceArn(const char* value) { SetDataSourceArn(value); return *this;} /** *Information about the format for the S3 source file or files.
*/ inline const UploadSettings& GetUploadSettings() const{ return m_uploadSettings; } /** *Information about the format for the S3 source file or files.
*/ inline bool UploadSettingsHasBeenSet() const { return m_uploadSettingsHasBeenSet; } /** *Information about the format for the S3 source file or files.
*/ inline void SetUploadSettings(const UploadSettings& value) { m_uploadSettingsHasBeenSet = true; m_uploadSettings = value; } /** *Information about the format for the S3 source file or files.
*/ inline void SetUploadSettings(UploadSettings&& value) { m_uploadSettingsHasBeenSet = true; m_uploadSettings = std::move(value); } /** *Information about the format for the S3 source file or files.
*/ inline S3Source& WithUploadSettings(const UploadSettings& value) { SetUploadSettings(value); return *this;} /** *Information about the format for the S3 source file or files.
*/ inline S3Source& WithUploadSettings(UploadSettings&& value) { SetUploadSettings(std::move(value)); return *this;} /** *A physical table type for as S3 data source.
*/ inline const Aws::VectorA physical table type for as S3 data source.
*/ inline bool InputColumnsHasBeenSet() const { return m_inputColumnsHasBeenSet; } /** *A physical table type for as S3 data source.
*/ inline void SetInputColumns(const Aws::VectorA physical table type for as S3 data source.
*/ inline void SetInputColumns(Aws::VectorA physical table type for as S3 data source.
*/ inline S3Source& WithInputColumns(const Aws::VectorA physical table type for as S3 data source.
*/ inline S3Source& WithInputColumns(Aws::VectorA physical table type for as S3 data source.
*/ inline S3Source& AddInputColumns(const InputColumn& value) { m_inputColumnsHasBeenSet = true; m_inputColumns.push_back(value); return *this; } /** *A physical table type for as S3 data source.
*/ inline S3Source& AddInputColumns(InputColumn&& value) { m_inputColumnsHasBeenSet = true; m_inputColumns.push_back(std::move(value)); return *this; } private: Aws::String m_dataSourceArn; bool m_dataSourceArnHasBeenSet; UploadSettings m_uploadSettings; bool m_uploadSettingsHasBeenSet; Aws::Vector