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

Input configuration information for the geomosaic.

See Also:

* AWS * API Reference

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

The name of the algorithm being used for geomosaic.

*/ inline const AlgorithmNameGeoMosaic& GetAlgorithmName() const{ return m_algorithmName; } /** *

The name of the algorithm being used for geomosaic.

*/ inline bool AlgorithmNameHasBeenSet() const { return m_algorithmNameHasBeenSet; } /** *

The name of the algorithm being used for geomosaic.

*/ inline void SetAlgorithmName(const AlgorithmNameGeoMosaic& value) { m_algorithmNameHasBeenSet = true; m_algorithmName = value; } /** *

The name of the algorithm being used for geomosaic.

*/ inline void SetAlgorithmName(AlgorithmNameGeoMosaic&& value) { m_algorithmNameHasBeenSet = true; m_algorithmName = std::move(value); } /** *

The name of the algorithm being used for geomosaic.

*/ inline GeoMosaicConfigInput& WithAlgorithmName(const AlgorithmNameGeoMosaic& value) { SetAlgorithmName(value); return *this;} /** *

The name of the algorithm being used for geomosaic.

*/ inline GeoMosaicConfigInput& WithAlgorithmName(AlgorithmNameGeoMosaic&& value) { SetAlgorithmName(std::move(value)); return *this;} /** *

The target bands for geomosaic.

*/ inline const Aws::Vector& GetTargetBands() const{ return m_targetBands; } /** *

The target bands for geomosaic.

*/ inline bool TargetBandsHasBeenSet() const { return m_targetBandsHasBeenSet; } /** *

The target bands for geomosaic.

*/ inline void SetTargetBands(const Aws::Vector& value) { m_targetBandsHasBeenSet = true; m_targetBands = value; } /** *

The target bands for geomosaic.

*/ inline void SetTargetBands(Aws::Vector&& value) { m_targetBandsHasBeenSet = true; m_targetBands = std::move(value); } /** *

The target bands for geomosaic.

*/ inline GeoMosaicConfigInput& WithTargetBands(const Aws::Vector& value) { SetTargetBands(value); return *this;} /** *

The target bands for geomosaic.

*/ inline GeoMosaicConfigInput& WithTargetBands(Aws::Vector&& value) { SetTargetBands(std::move(value)); return *this;} /** *

The target bands for geomosaic.

*/ inline GeoMosaicConfigInput& AddTargetBands(const Aws::String& value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(value); return *this; } /** *

The target bands for geomosaic.

*/ inline GeoMosaicConfigInput& AddTargetBands(Aws::String&& value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(std::move(value)); return *this; } /** *

The target bands for geomosaic.

*/ inline GeoMosaicConfigInput& AddTargetBands(const char* value) { m_targetBandsHasBeenSet = true; m_targetBands.push_back(value); return *this; } private: AlgorithmNameGeoMosaic m_algorithmName; bool m_algorithmNameHasBeenSet = false; Aws::Vector m_targetBands; bool m_targetBandsHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws