/** * 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 CognitoIdentityProvider { namespace Model { class AWS_COGNITOIDENTITYPROVIDER_API GetUICustomizationResult { public: GetUICustomizationResult(); GetUICustomizationResult(const Aws::AmazonWebServiceResult& result); GetUICustomizationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The UI customization information.

*/ inline const UICustomizationType& GetUICustomization() const{ return m_uICustomization; } /** *

The UI customization information.

*/ inline void SetUICustomization(const UICustomizationType& value) { m_uICustomization = value; } /** *

The UI customization information.

*/ inline void SetUICustomization(UICustomizationType&& value) { m_uICustomization = std::move(value); } /** *

The UI customization information.

*/ inline GetUICustomizationResult& WithUICustomization(const UICustomizationType& value) { SetUICustomization(value); return *this;} /** *

The UI customization information.

*/ inline GetUICustomizationResult& WithUICustomization(UICustomizationType&& value) { SetUICustomization(std::move(value)); return *this;} private: UICustomizationType m_uICustomization; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws