84 lines
2.1 KiB
C++
84 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cloudhsm/CloudHSM_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 CloudHSM
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Contains the output of the <a>CreateLunaClient</a> action.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateLunaClientResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_CLOUDHSM_API CreateLunaClientResult
|
|
{
|
|
public:
|
|
CreateLunaClientResult();
|
|
CreateLunaClientResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
CreateLunaClientResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline const Aws::String& GetClientArn() const{ return m_clientArn; }
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline void SetClientArn(const Aws::String& value) { m_clientArn = value; }
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline void SetClientArn(Aws::String&& value) { m_clientArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline void SetClientArn(const char* value) { m_clientArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline CreateLunaClientResult& WithClientArn(const Aws::String& value) { SetClientArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline CreateLunaClientResult& WithClientArn(Aws::String&& value) { SetClientArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the client.</p>
|
|
*/
|
|
inline CreateLunaClientResult& WithClientArn(const char* value) { SetClientArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_clientArn;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudHSM
|
|
} // namespace Aws
|