/** * 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 ChimeSDKIdentity { namespace Model { class UpdateAppInstanceUserEndpointResult { public: AWS_CHIMESDKIDENTITY_API UpdateAppInstanceUserEndpointResult(); AWS_CHIMESDKIDENTITY_API UpdateAppInstanceUserEndpointResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKIDENTITY_API UpdateAppInstanceUserEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of the AppInstanceUser.

*/ inline const Aws::String& GetAppInstanceUserArn() const{ return m_appInstanceUserArn; } /** *

The ARN of the AppInstanceUser.

*/ inline void SetAppInstanceUserArn(const Aws::String& value) { m_appInstanceUserArn = value; } /** *

The ARN of the AppInstanceUser.

*/ inline void SetAppInstanceUserArn(Aws::String&& value) { m_appInstanceUserArn = std::move(value); } /** *

The ARN of the AppInstanceUser.

*/ inline void SetAppInstanceUserArn(const char* value) { m_appInstanceUserArn.assign(value); } /** *

The ARN of the AppInstanceUser.

*/ inline UpdateAppInstanceUserEndpointResult& WithAppInstanceUserArn(const Aws::String& value) { SetAppInstanceUserArn(value); return *this;} /** *

The ARN of the AppInstanceUser.

*/ inline UpdateAppInstanceUserEndpointResult& WithAppInstanceUserArn(Aws::String&& value) { SetAppInstanceUserArn(std::move(value)); return *this;} /** *

The ARN of the AppInstanceUser.

*/ inline UpdateAppInstanceUserEndpointResult& WithAppInstanceUserArn(const char* value) { SetAppInstanceUserArn(value); return *this;} /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline const Aws::String& GetEndpointId() const{ return m_endpointId; } /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline void SetEndpointId(const Aws::String& value) { m_endpointId = value; } /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline void SetEndpointId(Aws::String&& value) { m_endpointId = std::move(value); } /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline void SetEndpointId(const char* value) { m_endpointId.assign(value); } /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline UpdateAppInstanceUserEndpointResult& WithEndpointId(const Aws::String& value) { SetEndpointId(value); return *this;} /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline UpdateAppInstanceUserEndpointResult& WithEndpointId(Aws::String&& value) { SetEndpointId(std::move(value)); return *this;} /** *

The unique identifier of the AppInstanceUserEndpoint.

*/ inline UpdateAppInstanceUserEndpointResult& WithEndpointId(const char* value) { SetEndpointId(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 UpdateAppInstanceUserEndpointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateAppInstanceUserEndpointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateAppInstanceUserEndpointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_appInstanceUserArn; Aws::String m_endpointId; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws