/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMakerGeospatial { namespace Model { /** *

The InputConfig for an EarthObservationJob response.

See Also:

* AWS * API Reference

*/ class InputConfigOutput { public: AWS_SAGEMAKERGEOSPATIAL_API InputConfigOutput(); AWS_SAGEMAKERGEOSPATIAL_API InputConfigOutput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API InputConfigOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline const Aws::String& GetPreviousEarthObservationJobArn() const{ return m_previousEarthObservationJobArn; } /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline bool PreviousEarthObservationJobArnHasBeenSet() const { return m_previousEarthObservationJobArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline void SetPreviousEarthObservationJobArn(const Aws::String& value) { m_previousEarthObservationJobArnHasBeenSet = true; m_previousEarthObservationJobArn = value; } /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline void SetPreviousEarthObservationJobArn(Aws::String&& value) { m_previousEarthObservationJobArnHasBeenSet = true; m_previousEarthObservationJobArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline void SetPreviousEarthObservationJobArn(const char* value) { m_previousEarthObservationJobArnHasBeenSet = true; m_previousEarthObservationJobArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline InputConfigOutput& WithPreviousEarthObservationJobArn(const Aws::String& value) { SetPreviousEarthObservationJobArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline InputConfigOutput& WithPreviousEarthObservationJobArn(Aws::String&& value) { SetPreviousEarthObservationJobArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the previous Earth Observation job.

*/ inline InputConfigOutput& WithPreviousEarthObservationJobArn(const char* value) { SetPreviousEarthObservationJobArn(value); return *this;} /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline const RasterDataCollectionQueryOutput& GetRasterDataCollectionQuery() const{ return m_rasterDataCollectionQuery; } /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline bool RasterDataCollectionQueryHasBeenSet() const { return m_rasterDataCollectionQueryHasBeenSet; } /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline void SetRasterDataCollectionQuery(const RasterDataCollectionQueryOutput& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = value; } /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline void SetRasterDataCollectionQuery(RasterDataCollectionQueryOutput&& value) { m_rasterDataCollectionQueryHasBeenSet = true; m_rasterDataCollectionQuery = std::move(value); } /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline InputConfigOutput& WithRasterDataCollectionQuery(const RasterDataCollectionQueryOutput& value) { SetRasterDataCollectionQuery(value); return *this;} /** *

The structure representing the RasterDataCollection Query consisting of the * Area of Interest, RasterDataCollectionArn, RasterDataCollectionName, TimeRange, * and Property Filters.

*/ inline InputConfigOutput& WithRasterDataCollectionQuery(RasterDataCollectionQueryOutput&& value) { SetRasterDataCollectionQuery(std::move(value)); return *this;} private: Aws::String m_previousEarthObservationJobArn; bool m_previousEarthObservationJobArnHasBeenSet = false; RasterDataCollectionQueryOutput m_rasterDataCollectionQuery; bool m_rasterDataCollectionQueryHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws