129 lines
3.9 KiB
C++
129 lines
3.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cognito-identity/CognitoIdentity_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CognitoIdentity
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Returned in response to a successful GetOpenIdToken request.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-identity-2014-06-30/GetOpenIdTokenResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_COGNITOIDENTITY_API GetOpenIdTokenResult
|
|
{
|
|
public:
|
|
GetOpenIdTokenResult();
|
|
GetOpenIdTokenResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetOpenIdTokenResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline const Aws::String& GetIdentityId() const{ return m_identityId; }
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline void SetIdentityId(const Aws::String& value) { m_identityId = value; }
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline void SetIdentityId(Aws::String&& value) { m_identityId = std::move(value); }
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline void SetIdentityId(const char* value) { m_identityId.assign(value); }
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithIdentityId(const Aws::String& value) { SetIdentityId(value); return *this;}
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithIdentityId(Aws::String&& value) { SetIdentityId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A unique identifier in the format REGION:GUID. Note that the IdentityId
|
|
* returned may not match the one passed on input.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithIdentityId(const char* value) { SetIdentityId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline const Aws::String& GetToken() const{ return m_token; }
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline void SetToken(const Aws::String& value) { m_token = value; }
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline void SetToken(Aws::String&& value) { m_token = std::move(value); }
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline void SetToken(const char* value) { m_token.assign(value); }
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithToken(const Aws::String& value) { SetToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithToken(Aws::String&& value) { SetToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
*/
|
|
inline GetOpenIdTokenResult& WithToken(const char* value) { SetToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_identityId;
|
|
|
|
Aws::String m_token;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CognitoIdentity
|
|
} // namespace Aws
|