/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Confirms the device response.See Also:
AWS
* API Reference
Indicates whether the user confirmation is necessary to confirm the device * response.
*/ inline bool GetUserConfirmationNecessary() const{ return m_userConfirmationNecessary; } /** *Indicates whether the user confirmation is necessary to confirm the device * response.
*/ inline void SetUserConfirmationNecessary(bool value) { m_userConfirmationNecessary = value; } /** *Indicates whether the user confirmation is necessary to confirm the device * response.
*/ inline ConfirmDeviceResult& WithUserConfirmationNecessary(bool value) { SetUserConfirmationNecessary(value); return *this;} private: bool m_userConfirmationNecessary; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws