/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace WAF { namespace Model { class AWS_WAF_API GetGeoMatchSetResult { public: GetGeoMatchSetResult(); GetGeoMatchSetResult(const Aws::AmazonWebServiceResult& result); GetGeoMatchSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the GeoMatchSet that you specified in the * GetGeoMatchSet request. This includes the Type, which * for a GeoMatchContraint is always Country, as well as * the Value, which is the identifier for a specific country.

*/ inline const GeoMatchSet& GetGeoMatchSet() const{ return m_geoMatchSet; } /** *

Information about the GeoMatchSet that you specified in the * GetGeoMatchSet request. This includes the Type, which * for a GeoMatchContraint is always Country, as well as * the Value, which is the identifier for a specific country.

*/ inline void SetGeoMatchSet(const GeoMatchSet& value) { m_geoMatchSet = value; } /** *

Information about the GeoMatchSet that you specified in the * GetGeoMatchSet request. This includes the Type, which * for a GeoMatchContraint is always Country, as well as * the Value, which is the identifier for a specific country.

*/ inline void SetGeoMatchSet(GeoMatchSet&& value) { m_geoMatchSet = std::move(value); } /** *

Information about the GeoMatchSet that you specified in the * GetGeoMatchSet request. This includes the Type, which * for a GeoMatchContraint is always Country, as well as * the Value, which is the identifier for a specific country.

*/ inline GetGeoMatchSetResult& WithGeoMatchSet(const GeoMatchSet& value) { SetGeoMatchSet(value); return *this;} /** *

Information about the GeoMatchSet that you specified in the * GetGeoMatchSet request. This includes the Type, which * for a GeoMatchContraint is always Country, as well as * the Value, which is the identifier for a specific country.

*/ inline GetGeoMatchSetResult& WithGeoMatchSet(GeoMatchSet&& value) { SetGeoMatchSet(std::move(value)); return *this;} private: GeoMatchSet m_geoMatchSet; }; } // namespace Model } // namespace WAF } // namespace Aws