/** * 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 { class ModifyLunaClientResult { public: AWS_CLOUDHSM_API ModifyLunaClientResult(); AWS_CLOUDHSM_API ModifyLunaClientResult(const Aws::AmazonWebServiceResult& result); AWS_CLOUDHSM_API ModifyLunaClientResult& 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 ModifyLunaClientResult& WithClientArn(const Aws::String& value) { SetClientArn(value); return *this;} /** *

The ARN of the client.

*/ inline ModifyLunaClientResult& WithClientArn(Aws::String&& value) { SetClientArn(std::move(value)); return *this;} /** *

The ARN of the client.

*/ inline ModifyLunaClientResult& 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 ModifyLunaClientResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ModifyLunaClientResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ModifyLunaClientResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_clientArn; Aws::String m_requestId; }; } // namespace Model } // namespace CloudHSM } // namespace Aws