/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Input configuration information for the geomosaic.See Also:
* AWS
* API Reference
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::VectorThe target bands for geomosaic.
*/ inline bool TargetBandsHasBeenSet() const { return m_targetBandsHasBeenSet; } /** *The target bands for geomosaic.
*/ inline void SetTargetBands(const Aws::VectorThe target bands for geomosaic.
*/ inline void SetTargetBands(Aws::VectorThe target bands for geomosaic.
*/ inline GeoMosaicConfigInput& WithTargetBands(const Aws::VectorThe target bands for geomosaic.
*/ inline GeoMosaicConfigInput& WithTargetBands(Aws::VectorThe 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