/** * 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 { /** *

Input configuration information.

See Also:

AWS * API Reference

*/ class InputConfigInput { public: AWS_SAGEMAKERGEOSPATIAL_API InputConfigInput(); AWS_SAGEMAKERGEOSPATIAL_API InputConfigInput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API InputConfigInput& 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 InputConfigInput& WithPreviousEarthObservationJobArn(const Aws::String& value) { SetPreviousEarthObservationJobArn(value); return *this;} /** *

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline InputConfigInput& WithRasterDataCollectionQuery(const RasterDataCollectionQueryInput& value) { SetRasterDataCollectionQuery(value); return *this;} /** *

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

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