/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKIdentity { namespace Model { class DescribeAppInstanceUserEndpointResult { public: AWS_CHIMESDKIDENTITY_API DescribeAppInstanceUserEndpointResult(); AWS_CHIMESDKIDENTITY_API DescribeAppInstanceUserEndpointResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKIDENTITY_API DescribeAppInstanceUserEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full details of an AppInstanceUserEndpoint: the * AppInstanceUserArn, ID, name, type, resource ARN, attributes, allow * messages, state, and created and last updated timestamps. All timestamps use * epoch milliseconds.

*/ inline const AppInstanceUserEndpoint& GetAppInstanceUserEndpoint() const{ return m_appInstanceUserEndpoint; } /** *

The full details of an AppInstanceUserEndpoint: the * AppInstanceUserArn, ID, name, type, resource ARN, attributes, allow * messages, state, and created and last updated timestamps. All timestamps use * epoch milliseconds.

*/ inline void SetAppInstanceUserEndpoint(const AppInstanceUserEndpoint& value) { m_appInstanceUserEndpoint = value; } /** *

The full details of an AppInstanceUserEndpoint: the * AppInstanceUserArn, ID, name, type, resource ARN, attributes, allow * messages, state, and created and last updated timestamps. All timestamps use * epoch milliseconds.

*/ inline void SetAppInstanceUserEndpoint(AppInstanceUserEndpoint&& value) { m_appInstanceUserEndpoint = std::move(value); } /** *

The full details of an AppInstanceUserEndpoint: the * AppInstanceUserArn, ID, name, type, resource ARN, attributes, allow * messages, state, and created and last updated timestamps. All timestamps use * epoch milliseconds.

*/ inline DescribeAppInstanceUserEndpointResult& WithAppInstanceUserEndpoint(const AppInstanceUserEndpoint& value) { SetAppInstanceUserEndpoint(value); return *this;} /** *

The full details of an AppInstanceUserEndpoint: the * AppInstanceUserArn, ID, name, type, resource ARN, attributes, allow * messages, state, and created and last updated timestamps. All timestamps use * epoch milliseconds.

*/ inline DescribeAppInstanceUserEndpointResult& WithAppInstanceUserEndpoint(AppInstanceUserEndpoint&& value) { SetAppInstanceUserEndpoint(std::move(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 DescribeAppInstanceUserEndpointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAppInstanceUserEndpointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAppInstanceUserEndpointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AppInstanceUserEndpoint m_appInstanceUserEndpoint; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws