/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include using namespace Aws::CognitoIdentityProvider::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; RespondToAuthChallengeResult::RespondToAuthChallengeResult() : m_challengeName(ChallengeNameType::NOT_SET) { } RespondToAuthChallengeResult::RespondToAuthChallengeResult(const Aws::AmazonWebServiceResult& result) : m_challengeName(ChallengeNameType::NOT_SET) { *this = result; } RespondToAuthChallengeResult& RespondToAuthChallengeResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("ChallengeName")) { m_challengeName = ChallengeNameTypeMapper::GetChallengeNameTypeForName(jsonValue.GetString("ChallengeName")); } if(jsonValue.ValueExists("Session")) { m_session = jsonValue.GetString("Session"); } if(jsonValue.ValueExists("ChallengeParameters")) { Aws::Map challengeParametersJsonMap = jsonValue.GetObject("ChallengeParameters").GetAllObjects(); for(auto& challengeParametersItem : challengeParametersJsonMap) { m_challengeParameters[challengeParametersItem.first] = challengeParametersItem.second.AsString(); } } if(jsonValue.ValueExists("AuthenticationResult")) { m_authenticationResult = jsonValue.GetObject("AuthenticationResult"); } const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }