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

83 lines
2.2 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 GetId request.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-identity-2014-06-30/GetIdResponse">AWS
* API Reference</a></p>
*/
class AWS_COGNITOIDENTITY_API GetIdResult
{
public:
GetIdResult();
GetIdResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetIdResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline const Aws::String& GetIdentityId() const{ return m_identityId; }
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline void SetIdentityId(const Aws::String& value) { m_identityId = value; }
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline void SetIdentityId(Aws::String&& value) { m_identityId = std::move(value); }
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline void SetIdentityId(const char* value) { m_identityId.assign(value); }
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline GetIdResult& WithIdentityId(const Aws::String& value) { SetIdentityId(value); return *this;}
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline GetIdResult& WithIdentityId(Aws::String&& value) { SetIdentityId(std::move(value)); return *this;}
/**
* <p>A unique identifier in the format REGION:GUID.</p>
*/
inline GetIdResult& WithIdentityId(const char* value) { SetIdentityId(value); return *this;}
private:
Aws::String m_identityId;
};
} // namespace Model
} // namespace CognitoIdentity
} // namespace Aws