/**
* 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;} private: Aws::String m_clientArn; }; } // namespace Model } // namespace CloudHSM } // namespace Aws