/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Honeycode { namespace Model { /** */ class AWS_HONEYCODE_API DescribeTableDataImportJobRequest : public HoneycodeRequest { public: DescribeTableDataImportJobRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeTableDataImportJob"; } Aws::String SerializePayload() const override; /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline const Aws::String& GetWorkbookId() const{ return m_workbookId; } /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline bool WorkbookIdHasBeenSet() const { return m_workbookIdHasBeenSet; } /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline void SetWorkbookId(const Aws::String& value) { m_workbookIdHasBeenSet = true; m_workbookId = value; } /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline void SetWorkbookId(Aws::String&& value) { m_workbookIdHasBeenSet = true; m_workbookId = std::move(value); } /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline void SetWorkbookId(const char* value) { m_workbookIdHasBeenSet = true; m_workbookId.assign(value); } /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithWorkbookId(const Aws::String& value) { SetWorkbookId(value); return *this;} /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithWorkbookId(Aws::String&& value) { SetWorkbookId(std::move(value)); return *this;} /** *

The ID of the workbook into which data was imported.

If a workbook * with the specified id could not be found, this API throws * ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithWorkbookId(const char* value) { SetWorkbookId(value); return *this;} /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline const Aws::String& GetTableId() const{ return m_tableId; } /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline bool TableIdHasBeenSet() const { return m_tableIdHasBeenSet; } /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline void SetTableId(const Aws::String& value) { m_tableIdHasBeenSet = true; m_tableId = value; } /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline void SetTableId(Aws::String&& value) { m_tableIdHasBeenSet = true; m_tableId = std::move(value); } /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline void SetTableId(const char* value) { m_tableIdHasBeenSet = true; m_tableId.assign(value); } /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithTableId(const Aws::String& value) { SetTableId(value); return *this;} /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithTableId(Aws::String&& value) { SetTableId(std::move(value)); return *this;} /** *

The ID of the table into which data was imported.

If a table with the * specified id could not be found, this API throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithTableId(const char* value) { SetTableId(value); return *this;} /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *

The ID of the job that was returned by the StartTableDataImportJob * request.

If a job with the specified id could not be found, this API * throws ResourceNotFoundException.

*/ inline DescribeTableDataImportJobRequest& WithJobId(const char* value) { SetJobId(value); return *this;} private: Aws::String m_workbookId; bool m_workbookIdHasBeenSet; Aws::String m_tableId; bool m_tableIdHasBeenSet; Aws::String m_jobId; bool m_jobIdHasBeenSet; }; } // namespace Model } // namespace Honeycode } // namespace Aws