/** * 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 ExportEarthObservationJobResult { public: AWS_SAGEMAKERGEOSPATIAL_API ExportEarthObservationJobResult(); AWS_SAGEMAKERGEOSPATIAL_API ExportEarthObservationJobResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKERGEOSPATIAL_API ExportEarthObservationJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

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

The output Amazon Resource Name (ARN) of the Earth Observation job being * exported.

*/ inline ExportEarthObservationJobResult& 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 ExportEarthObservationJobResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The creation time.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The Amazon Resource Name (ARN) of the IAM role that you specified for the * job.

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

The source images provided to the Earth Observation job being exported.

*/ inline bool GetExportSourceImages() const{ return m_exportSourceImages; } /** *

The source images provided to the Earth Observation job being exported.

*/ inline void SetExportSourceImages(bool value) { m_exportSourceImages = value; } /** *

The source images provided to the Earth Observation job being exported.

*/ inline ExportEarthObservationJobResult& WithExportSourceImages(bool value) { SetExportSourceImages(value); return *this;} /** *

The status of the results of the Earth Observation job being exported.

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

The status of the results of the Earth Observation job being exported.

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

The status of the results of the Earth Observation job being exported.

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

The status of the results of the Earth Observation job being exported.

*/ inline ExportEarthObservationJobResult& WithExportStatus(const EarthObservationJobExportStatus& value) { SetExportStatus(value); return *this;} /** *

The status of the results of the Earth Observation job being exported.

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

An object containing information about the output file.

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

An object containing information about the output file.

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

An object containing information about the output file.

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

An object containing information about the output file.

*/ inline ExportEarthObservationJobResult& WithOutputConfig(const OutputConfigInput& value) { SetOutputConfig(value); return *this;} /** *

An object containing information about the output file.

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