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/AdminRespondToAuthChallengeResult.h

249 lines
12 KiB
C++

/**
* 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/ChallengeNameType.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <aws/cognito-idp/model/AuthenticationResultType.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
{
/**
* <p>Responds to the authentication challenge, as an administrator.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminRespondToAuthChallengeResponse">AWS
* API Reference</a></p>
*/
class AWS_COGNITOIDENTITYPROVIDER_API AdminRespondToAuthChallengeResult
{
public:
AdminRespondToAuthChallengeResult();
AdminRespondToAuthChallengeResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
AdminRespondToAuthChallengeResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The name of the challenge. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline const ChallengeNameType& GetChallengeName() const{ return m_challengeName; }
/**
* <p>The name of the challenge. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline void SetChallengeName(const ChallengeNameType& value) { m_challengeName = value; }
/**
* <p>The name of the challenge. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline void SetChallengeName(ChallengeNameType&& value) { m_challengeName = std::move(value); }
/**
* <p>The name of the challenge. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& WithChallengeName(const ChallengeNameType& value) { SetChallengeName(value); return *this;}
/**
* <p>The name of the challenge. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& WithChallengeName(ChallengeNameType&& value) { SetChallengeName(std::move(value)); return *this;}
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline const Aws::String& GetSession() const{ return m_session; }
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline void SetSession(const Aws::String& value) { m_session = value; }
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline void SetSession(Aws::String&& value) { m_session = std::move(value); }
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline void SetSession(const char* value) { m_session.assign(value); }
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline AdminRespondToAuthChallengeResult& WithSession(const Aws::String& value) { SetSession(value); return *this;}
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline AdminRespondToAuthChallengeResult& WithSession(Aws::String&& value) { SetSession(std::move(value)); return *this;}
/**
* <p>The session which should be passed both ways in challenge-response calls to
* the service. If the caller needs to go through another challenge, they return a
* session with other challenge parameters. This session should be passed as it is
* to the next <code>RespondToAuthChallenge</code> API call.</p>
*/
inline AdminRespondToAuthChallengeResult& WithSession(const char* value) { SetSession(value); return *this;}
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline const Aws::Map<Aws::String, Aws::String>& GetChallengeParameters() const{ return m_challengeParameters; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline void SetChallengeParameters(const Aws::Map<Aws::String, Aws::String>& value) { m_challengeParameters = value; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline void SetChallengeParameters(Aws::Map<Aws::String, Aws::String>&& value) { m_challengeParameters = std::move(value); }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& WithChallengeParameters(const Aws::Map<Aws::String, Aws::String>& value) { SetChallengeParameters(value); return *this;}
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& WithChallengeParameters(Aws::Map<Aws::String, Aws::String>&& value) { SetChallengeParameters(std::move(value)); return *this;}
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(const Aws::String& key, const Aws::String& value) { m_challengeParameters.emplace(key, value); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(Aws::String&& key, const Aws::String& value) { m_challengeParameters.emplace(std::move(key), value); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(const Aws::String& key, Aws::String&& value) { m_challengeParameters.emplace(key, std::move(value)); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(Aws::String&& key, Aws::String&& value) { m_challengeParameters.emplace(std::move(key), std::move(value)); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(const char* key, Aws::String&& value) { m_challengeParameters.emplace(key, std::move(value)); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(Aws::String&& key, const char* value) { m_challengeParameters.emplace(std::move(key), value); return *this; }
/**
* <p>The challenge parameters. For more information, see <a
* href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html">AdminInitiateAuth</a>.</p>
*/
inline AdminRespondToAuthChallengeResult& AddChallengeParameters(const char* key, const char* value) { m_challengeParameters.emplace(key, value); return *this; }
/**
* <p>The result returned by the server in response to the authentication
* request.</p>
*/
inline const AuthenticationResultType& GetAuthenticationResult() const{ return m_authenticationResult; }
/**
* <p>The result returned by the server in response to the authentication
* request.</p>
*/
inline void SetAuthenticationResult(const AuthenticationResultType& value) { m_authenticationResult = value; }
/**
* <p>The result returned by the server in response to the authentication
* request.</p>
*/
inline void SetAuthenticationResult(AuthenticationResultType&& value) { m_authenticationResult = std::move(value); }
/**
* <p>The result returned by the server in response to the authentication
* request.</p>
*/
inline AdminRespondToAuthChallengeResult& WithAuthenticationResult(const AuthenticationResultType& value) { SetAuthenticationResult(value); return *this;}
/**
* <p>The result returned by the server in response to the authentication
* request.</p>
*/
inline AdminRespondToAuthChallengeResult& WithAuthenticationResult(AuthenticationResultType&& value) { SetAuthenticationResult(std::move(value)); return *this;}
private:
ChallengeNameType m_challengeName;
Aws::String m_session;
Aws::Map<Aws::String, Aws::String> m_challengeParameters;
AuthenticationResultType m_authenticationResult;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws