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-identity/include/aws/cognito-identity/model/MergeDeveloperIdentitiesResult.h

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