/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ForecastService { namespace Model { class DescribeExplainabilityExportResult { public: AWS_FORECASTSERVICE_API DescribeExplainabilityExportResult(); AWS_FORECASTSERVICE_API DescribeExplainabilityExportResult(const Aws::AmazonWebServiceResult& result); AWS_FORECASTSERVICE_API DescribeExplainabilityExportResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline const Aws::String& GetExplainabilityExportArn() const{ return m_explainabilityExportArn; } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityExportArn(const Aws::String& value) { m_explainabilityExportArn = value; } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityExportArn(Aws::String&& value) { m_explainabilityExportArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityExportArn(const char* value) { m_explainabilityExportArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportArn(const Aws::String& value) { SetExplainabilityExportArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportArn(Aws::String&& value) { SetExplainabilityExportArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportArn(const char* value) { SetExplainabilityExportArn(value); return *this;} /** *

The name of the Explainability export.

*/ inline const Aws::String& GetExplainabilityExportName() const{ return m_explainabilityExportName; } /** *

The name of the Explainability export.

*/ inline void SetExplainabilityExportName(const Aws::String& value) { m_explainabilityExportName = value; } /** *

The name of the Explainability export.

*/ inline void SetExplainabilityExportName(Aws::String&& value) { m_explainabilityExportName = std::move(value); } /** *

The name of the Explainability export.

*/ inline void SetExplainabilityExportName(const char* value) { m_explainabilityExportName.assign(value); } /** *

The name of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportName(const Aws::String& value) { SetExplainabilityExportName(value); return *this;} /** *

The name of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportName(Aws::String&& value) { SetExplainabilityExportName(std::move(value)); return *this;} /** *

The name of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityExportName(const char* value) { SetExplainabilityExportName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline const Aws::String& GetExplainabilityArn() const{ return m_explainabilityArn; } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityArn(const Aws::String& value) { m_explainabilityArn = value; } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityArn(Aws::String&& value) { m_explainabilityArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline void SetExplainabilityArn(const char* value) { m_explainabilityArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityArn(const Aws::String& value) { SetExplainabilityArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityArn(Aws::String&& value) { SetExplainabilityArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability export.

*/ inline DescribeExplainabilityExportResult& WithExplainabilityArn(const char* value) { SetExplainabilityArn(value); return *this;} inline const DataDestination& GetDestination() const{ return m_destination; } inline void SetDestination(const DataDestination& value) { m_destination = value; } inline void SetDestination(DataDestination&& value) { m_destination = std::move(value); } inline DescribeExplainabilityExportResult& WithDestination(const DataDestination& value) { SetDestination(value); return *this;} inline DescribeExplainabilityExportResult& WithDestination(DataDestination&& value) { SetDestination(std::move(value)); return *this;} /** *

Information about any errors that occurred during the export.

*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *

Information about any errors that occurred during the export.

*/ inline void SetMessage(const Aws::String& value) { m_message = value; } /** *

Information about any errors that occurred during the export.

*/ inline void SetMessage(Aws::String&& value) { m_message = std::move(value); } /** *

Information about any errors that occurred during the export.

*/ inline void SetMessage(const char* value) { m_message.assign(value); } /** *

Information about any errors that occurred during the export.

*/ inline DescribeExplainabilityExportResult& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *

Information about any errors that occurred during the export.

*/ inline DescribeExplainabilityExportResult& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *

Information about any errors that occurred during the export.

*/ inline DescribeExplainabilityExportResult& WithMessage(const char* value) { SetMessage(value); return *this;} /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline void SetStatus(const Aws::String& value) { m_status = value; } /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline void SetStatus(Aws::String&& value) { m_status = std::move(value); } /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline void SetStatus(const char* value) { m_status.assign(value); } /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline DescribeExplainabilityExportResult& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline DescribeExplainabilityExportResult& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *

The status of the Explainability export. States include:

  • * ACTIVE

  • CREATE_PENDING, * CREATE_IN_PROGRESS, CREATE_FAILED

  • * CREATE_STOPPING, CREATE_STOPPED

  • * DELETE_PENDING, DELETE_IN_PROGRESS, * DELETE_FAILED

*/ inline DescribeExplainabilityExportResult& WithStatus(const char* value) { SetStatus(value); return *this;} /** *

When the Explainability export was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

When the Explainability export was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

When the Explainability export was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

When the Explainability export was created.

*/ inline DescribeExplainabilityExportResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

When the Explainability export was created.

*/ inline DescribeExplainabilityExportResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The last time the resource was modified. The timestamp depends on the status * of the job:

  • CREATE_PENDING - The * CreationTime.

  • CREATE_IN_PROGRESS - * The current timestamp.

  • CREATE_STOPPING - The * current timestamp.

  • CREATE_STOPPED - When the job * stopped.

  • ACTIVE or CREATE_FAILED - * When the job finished or failed.

*/ inline const Aws::Utils::DateTime& GetLastModificationTime() const{ return m_lastModificationTime; } /** *

The last time the resource was modified. The timestamp depends on the status * of the job:

  • CREATE_PENDING - The * CreationTime.

  • CREATE_IN_PROGRESS - * The current timestamp.

  • CREATE_STOPPING - The * current timestamp.

  • CREATE_STOPPED - When the job * stopped.

  • ACTIVE or CREATE_FAILED - * When the job finished or failed.

*/ inline void SetLastModificationTime(const Aws::Utils::DateTime& value) { m_lastModificationTime = value; } /** *

The last time the resource was modified. The timestamp depends on the status * of the job:

  • CREATE_PENDING - The * CreationTime.

  • CREATE_IN_PROGRESS - * The current timestamp.

  • CREATE_STOPPING - The * current timestamp.

  • CREATE_STOPPED - When the job * stopped.

  • ACTIVE or CREATE_FAILED - * When the job finished or failed.

*/ inline void SetLastModificationTime(Aws::Utils::DateTime&& value) { m_lastModificationTime = std::move(value); } /** *

The last time the resource was modified. The timestamp depends on the status * of the job:

  • CREATE_PENDING - The * CreationTime.

  • CREATE_IN_PROGRESS - * The current timestamp.

  • CREATE_STOPPING - The * current timestamp.

  • CREATE_STOPPED - When the job * stopped.

  • ACTIVE or CREATE_FAILED - * When the job finished or failed.

*/ inline DescribeExplainabilityExportResult& WithLastModificationTime(const Aws::Utils::DateTime& value) { SetLastModificationTime(value); return *this;} /** *

The last time the resource was modified. The timestamp depends on the status * of the job:

  • CREATE_PENDING - The * CreationTime.

  • CREATE_IN_PROGRESS - * The current timestamp.

  • CREATE_STOPPING - The * current timestamp.

  • CREATE_STOPPED - When the job * stopped.

  • ACTIVE or CREATE_FAILED - * When the job finished or failed.

*/ inline DescribeExplainabilityExportResult& WithLastModificationTime(Aws::Utils::DateTime&& value) { SetLastModificationTime(std::move(value)); return *this;} /** *

The format of the exported data, CSV or PARQUET.

*/ inline const Aws::String& GetFormat() const{ return m_format; } /** *

The format of the exported data, CSV or PARQUET.

*/ inline void SetFormat(const Aws::String& value) { m_format = value; } /** *

The format of the exported data, CSV or PARQUET.

*/ inline void SetFormat(Aws::String&& value) { m_format = std::move(value); } /** *

The format of the exported data, CSV or PARQUET.

*/ inline void SetFormat(const char* value) { m_format.assign(value); } /** *

The format of the exported data, CSV or PARQUET.

*/ inline DescribeExplainabilityExportResult& WithFormat(const Aws::String& value) { SetFormat(value); return *this;} /** *

The format of the exported data, CSV or PARQUET.

*/ inline DescribeExplainabilityExportResult& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;} /** *

The format of the exported data, CSV or PARQUET.

*/ inline DescribeExplainabilityExportResult& WithFormat(const char* value) { SetFormat(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeExplainabilityExportResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeExplainabilityExportResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeExplainabilityExportResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_explainabilityExportArn; Aws::String m_explainabilityExportName; Aws::String m_explainabilityArn; DataDestination m_destination; Aws::String m_message; Aws::String m_status; Aws::Utils::DateTime m_creationTime; Aws::Utils::DateTime m_lastModificationTime; Aws::String m_format; Aws::String m_requestId; }; } // namespace Model } // namespace ForecastService } // namespace Aws