/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMakerGeospatial { namespace Model { class ExportVectorEnrichmentJobResult { public: AWS_SAGEMAKERGEOSPATIAL_API ExportVectorEnrichmentJobResult(); AWS_SAGEMAKERGEOSPATIAL_API ExportVectorEnrichmentJobResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKERGEOSPATIAL_API ExportVectorEnrichmentJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

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

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

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

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

*/ inline ExportVectorEnrichmentJobResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

*/ inline ExportVectorEnrichmentJobResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Vector Enrichment job being * exported.

*/ inline ExportVectorEnrichmentJobResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

The creation time.

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

The creation time.

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

The creation time.

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

The creation time.

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

The creation time.

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

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

*/ inline const Aws::String& GetExecutionRoleArn() const{ return m_executionRoleArn; } /** *

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

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

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

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

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

*/ inline void SetExecutionRoleArn(const char* value) { m_executionRoleArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

*/ inline ExportVectorEnrichmentJobResult& WithExecutionRoleArn(const Aws::String& value) { SetExecutionRoleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

*/ inline ExportVectorEnrichmentJobResult& WithExecutionRoleArn(Aws::String&& value) { SetExecutionRoleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role with permission to upload to * the location in OutputConfig.

*/ inline ExportVectorEnrichmentJobResult& WithExecutionRoleArn(const char* value) { SetExecutionRoleArn(value); return *this;} /** *

The status of the results the Vector Enrichment job being exported.

*/ inline const VectorEnrichmentJobExportStatus& GetExportStatus() const{ return m_exportStatus; } /** *

The status of the results the Vector Enrichment job being exported.

*/ inline void SetExportStatus(const VectorEnrichmentJobExportStatus& value) { m_exportStatus = value; } /** *

The status of the results the Vector Enrichment job being exported.

*/ inline void SetExportStatus(VectorEnrichmentJobExportStatus&& value) { m_exportStatus = std::move(value); } /** *

The status of the results the Vector Enrichment job being exported.

*/ inline ExportVectorEnrichmentJobResult& WithExportStatus(const VectorEnrichmentJobExportStatus& value) { SetExportStatus(value); return *this;} /** *

The status of the results the Vector Enrichment job being exported.

*/ inline ExportVectorEnrichmentJobResult& WithExportStatus(VectorEnrichmentJobExportStatus&& value) { SetExportStatus(std::move(value)); return *this;} /** *

Output location information for exporting Vector Enrichment Job results.

*/ inline const ExportVectorEnrichmentJobOutputConfig& GetOutputConfig() const{ return m_outputConfig; } /** *

Output location information for exporting Vector Enrichment Job results.

*/ inline void SetOutputConfig(const ExportVectorEnrichmentJobOutputConfig& value) { m_outputConfig = value; } /** *

Output location information for exporting Vector Enrichment Job results.

*/ inline void SetOutputConfig(ExportVectorEnrichmentJobOutputConfig&& value) { m_outputConfig = std::move(value); } /** *

Output location information for exporting Vector Enrichment Job results.

*/ inline ExportVectorEnrichmentJobResult& WithOutputConfig(const ExportVectorEnrichmentJobOutputConfig& value) { SetOutputConfig(value); return *this;} /** *

Output location information for exporting Vector Enrichment Job results.

*/ inline ExportVectorEnrichmentJobResult& WithOutputConfig(ExportVectorEnrichmentJobOutputConfig&& value) { SetOutputConfig(std::move(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 ExportVectorEnrichmentJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ExportVectorEnrichmentJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ExportVectorEnrichmentJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_arn; Aws::Utils::DateTime m_creationTime; Aws::String m_executionRoleArn; VectorEnrichmentJobExportStatus m_exportStatus; ExportVectorEnrichmentJobOutputConfig m_outputConfig; Aws::String m_requestId; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws