/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMakerGeospatial { namespace Model { /** *

The input structure for Reverse Geocoding operation type.

See * Also:

AWS * API Reference

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

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline const Aws::String& GetXAttributeName() const{ return m_xAttributeName; } /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline bool XAttributeNameHasBeenSet() const { return m_xAttributeNameHasBeenSet; } /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline void SetXAttributeName(const Aws::String& value) { m_xAttributeNameHasBeenSet = true; m_xAttributeName = value; } /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline void SetXAttributeName(Aws::String&& value) { m_xAttributeNameHasBeenSet = true; m_xAttributeName = std::move(value); } /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline void SetXAttributeName(const char* value) { m_xAttributeNameHasBeenSet = true; m_xAttributeName.assign(value); } /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline ReverseGeocodingConfig& WithXAttributeName(const Aws::String& value) { SetXAttributeName(value); return *this;} /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline ReverseGeocodingConfig& WithXAttributeName(Aws::String&& value) { SetXAttributeName(std::move(value)); return *this;} /** *

The field name for the data that describes x-axis coordinate, eg. longitude * of a point.

*/ inline ReverseGeocodingConfig& WithXAttributeName(const char* value) { SetXAttributeName(value); return *this;} /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline const Aws::String& GetYAttributeName() const{ return m_yAttributeName; } /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline bool YAttributeNameHasBeenSet() const { return m_yAttributeNameHasBeenSet; } /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline void SetYAttributeName(const Aws::String& value) { m_yAttributeNameHasBeenSet = true; m_yAttributeName = value; } /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline void SetYAttributeName(Aws::String&& value) { m_yAttributeNameHasBeenSet = true; m_yAttributeName = std::move(value); } /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline void SetYAttributeName(const char* value) { m_yAttributeNameHasBeenSet = true; m_yAttributeName.assign(value); } /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline ReverseGeocodingConfig& WithYAttributeName(const Aws::String& value) { SetYAttributeName(value); return *this;} /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline ReverseGeocodingConfig& WithYAttributeName(Aws::String&& value) { SetYAttributeName(std::move(value)); return *this;} /** *

The field name for the data that describes y-axis coordinate, eg. latitude of * a point.

*/ inline ReverseGeocodingConfig& WithYAttributeName(const char* value) { SetYAttributeName(value); return *this;} private: Aws::String m_xAttributeName; bool m_xAttributeNameHasBeenSet = false; Aws::String m_yAttributeName; bool m_yAttributeNameHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws