This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-cognito-idp/include/aws/cognito-idp/model/SetUserPoolMfaConfigResult.h

146 lines
5.6 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
#include <aws/cognito-idp/model/SmsMfaConfigType.h>
#include <aws/cognito-idp/model/SoftwareTokenMfaConfigType.h>
#include <aws/cognito-idp/model/UserPoolMfaType.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CognitoIdentityProvider
{
namespace Model
{
class AWS_COGNITOIDENTITYPROVIDER_API SetUserPoolMfaConfigResult
{
public:
SetUserPoolMfaConfigResult();
SetUserPoolMfaConfigResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
SetUserPoolMfaConfigResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The SMS text message MFA configuration.</p>
*/
inline const SmsMfaConfigType& GetSmsMfaConfiguration() const{ return m_smsMfaConfiguration; }
/**
* <p>The SMS text message MFA configuration.</p>
*/
inline void SetSmsMfaConfiguration(const SmsMfaConfigType& value) { m_smsMfaConfiguration = value; }
/**
* <p>The SMS text message MFA configuration.</p>
*/
inline void SetSmsMfaConfiguration(SmsMfaConfigType&& value) { m_smsMfaConfiguration = std::move(value); }
/**
* <p>The SMS text message MFA configuration.</p>
*/
inline SetUserPoolMfaConfigResult& WithSmsMfaConfiguration(const SmsMfaConfigType& value) { SetSmsMfaConfiguration(value); return *this;}
/**
* <p>The SMS text message MFA configuration.</p>
*/
inline SetUserPoolMfaConfigResult& WithSmsMfaConfiguration(SmsMfaConfigType&& value) { SetSmsMfaConfiguration(std::move(value)); return *this;}
/**
* <p>The software token MFA configuration.</p>
*/
inline const SoftwareTokenMfaConfigType& GetSoftwareTokenMfaConfiguration() const{ return m_softwareTokenMfaConfiguration; }
/**
* <p>The software token MFA configuration.</p>
*/
inline void SetSoftwareTokenMfaConfiguration(const SoftwareTokenMfaConfigType& value) { m_softwareTokenMfaConfiguration = value; }
/**
* <p>The software token MFA configuration.</p>
*/
inline void SetSoftwareTokenMfaConfiguration(SoftwareTokenMfaConfigType&& value) { m_softwareTokenMfaConfiguration = std::move(value); }
/**
* <p>The software token MFA configuration.</p>
*/
inline SetUserPoolMfaConfigResult& WithSoftwareTokenMfaConfiguration(const SoftwareTokenMfaConfigType& value) { SetSoftwareTokenMfaConfiguration(value); return *this;}
/**
* <p>The software token MFA configuration.</p>
*/
inline SetUserPoolMfaConfigResult& WithSoftwareTokenMfaConfiguration(SoftwareTokenMfaConfigType&& value) { SetSoftwareTokenMfaConfiguration(std::move(value)); return *this;}
/**
* <p>The MFA configuration. Valid values include:</p> <ul> <li> <p>
* <code>OFF</code> MFA will not be used for any users.</p> </li> <li> <p>
* <code>ON</code> MFA is required for all users to sign in.</p> </li> <li> <p>
* <code>OPTIONAL</code> MFA will be required only for individual users who have an
* MFA factor enabled.</p> </li> </ul>
*/
inline const UserPoolMfaType& GetMfaConfiguration() const{ return m_mfaConfiguration; }
/**
* <p>The MFA configuration. Valid values include:</p> <ul> <li> <p>
* <code>OFF</code> MFA will not be used for any users.</p> </li> <li> <p>
* <code>ON</code> MFA is required for all users to sign in.</p> </li> <li> <p>
* <code>OPTIONAL</code> MFA will be required only for individual users who have an
* MFA factor enabled.</p> </li> </ul>
*/
inline void SetMfaConfiguration(const UserPoolMfaType& value) { m_mfaConfiguration = value; }
/**
* <p>The MFA configuration. Valid values include:</p> <ul> <li> <p>
* <code>OFF</code> MFA will not be used for any users.</p> </li> <li> <p>
* <code>ON</code> MFA is required for all users to sign in.</p> </li> <li> <p>
* <code>OPTIONAL</code> MFA will be required only for individual users who have an
* MFA factor enabled.</p> </li> </ul>
*/
inline void SetMfaConfiguration(UserPoolMfaType&& value) { m_mfaConfiguration = std::move(value); }
/**
* <p>The MFA configuration. Valid values include:</p> <ul> <li> <p>
* <code>OFF</code> MFA will not be used for any users.</p> </li> <li> <p>
* <code>ON</code> MFA is required for all users to sign in.</p> </li> <li> <p>
* <code>OPTIONAL</code> MFA will be required only for individual users who have an
* MFA factor enabled.</p> </li> </ul>
*/
inline SetUserPoolMfaConfigResult& WithMfaConfiguration(const UserPoolMfaType& value) { SetMfaConfiguration(value); return *this;}
/**
* <p>The MFA configuration. Valid values include:</p> <ul> <li> <p>
* <code>OFF</code> MFA will not be used for any users.</p> </li> <li> <p>
* <code>ON</code> MFA is required for all users to sign in.</p> </li> <li> <p>
* <code>OPTIONAL</code> MFA will be required only for individual users who have an
* MFA factor enabled.</p> </li> </ul>
*/
inline SetUserPoolMfaConfigResult& WithMfaConfiguration(UserPoolMfaType&& value) { SetMfaConfiguration(std::move(value)); return *this;}
private:
SmsMfaConfigType m_smsMfaConfiguration;
SoftwareTokenMfaConfigType m_softwareTokenMfaConfiguration;
UserPoolMfaType m_mfaConfiguration;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws