/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Locale data structure represents a geographical region or
* location.See Also:
AWS
* API Reference
The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline const Aws::String& GetCountry() const{ return m_country; } /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline bool CountryHasBeenSet() const { return m_countryHasBeenSet; } /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline void SetCountry(const Aws::String& value) { m_countryHasBeenSet = true; m_country = value; } /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline void SetCountry(Aws::String&& value) { m_countryHasBeenSet = true; m_country = std::move(value); } /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline void SetCountry(const char* value) { m_countryHasBeenSet = true; m_country.assign(value); } /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline Locale& WithCountry(const Aws::String& value) { SetCountry(value); return *this;} /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline Locale& WithCountry(Aws::String&& value) { SetCountry(std::move(value)); return *this;} /** *The country of the locale. Must be a valid ISO 3166 country code. For * example, the code US refers to the United States of America.
*/ inline Locale& WithCountry(const char* value) { SetCountry(value); return *this;} /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline const Aws::String& GetSubdivision() const{ return m_subdivision; } /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline bool SubdivisionHasBeenSet() const { return m_subdivisionHasBeenSet; } /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline void SetSubdivision(const Aws::String& value) { m_subdivisionHasBeenSet = true; m_subdivision = value; } /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline void SetSubdivision(Aws::String&& value) { m_subdivisionHasBeenSet = true; m_subdivision = std::move(value); } /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline void SetSubdivision(const char* value) { m_subdivisionHasBeenSet = true; m_subdivision.assign(value); } /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline Locale& WithSubdivision(const Aws::String& value) { SetSubdivision(value); return *this;} /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline Locale& WithSubdivision(Aws::String&& value) { SetSubdivision(std::move(value)); return *this;} /** *The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. * For example, the code WA refers to the state of Washington.
*/ inline Locale& WithSubdivision(const char* value) { SetSubdivision(value); return *this;} private: Aws::String m_country; bool m_countryHasBeenSet = false; Aws::String m_subdivision; bool m_subdivisionHasBeenSet = false; }; } // namespace Model } // namespace MTurk } // namespace Aws