/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CloudHSM { namespace Model { /** *

Contains the output of the CreateLunaClient action.

See * Also:

AWS * API Reference

*/ class AWS_CLOUDHSM_API CreateLunaClientResult { public: CreateLunaClientResult(); CreateLunaClientResult(const Aws::AmazonWebServiceResult& result); CreateLunaClientResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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