/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of the CreateLunaClient action.See
* Also:
AWS
* API Reference
The ARN of the client.
*/ inline const Aws::String& GetClientArn() const{ return m_clientArn; } /** *The ARN of the client.
*/ inline void SetClientArn(const Aws::String& value) { m_clientArn = value; } /** *The ARN of the client.
*/ inline void SetClientArn(Aws::String&& value) { m_clientArn = std::move(value); } /** *The ARN of the client.
*/ inline void SetClientArn(const char* value) { m_clientArn.assign(value); } /** *The ARN of the client.
*/ inline CreateLunaClientResult& WithClientArn(const Aws::String& value) { SetClientArn(value); return *this;} /** *The ARN of the client.
*/ inline CreateLunaClientResult& WithClientArn(Aws::String&& value) { SetClientArn(std::move(value)); return *this;} /** *The ARN of the client.
*/ inline CreateLunaClientResult& WithClientArn(const char* value) { SetClientArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateLunaClientResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateLunaClientResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateLunaClientResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_clientArn; Aws::String m_requestId; }; } // namespace Model } // namespace CloudHSM } // namespace Aws