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

The ARN and name of the AppInstanceUser, the ARN of the * AppInstance, and the created and last-updated timestamps. All * timestamps use epoch milliseconds.

*/ inline const AppInstanceAdmin& GetAppInstanceAdmin() const{ return m_appInstanceAdmin; } /** *

The ARN and name of the AppInstanceUser, the ARN of the * AppInstance, and the created and last-updated timestamps. All * timestamps use epoch milliseconds.

*/ inline void SetAppInstanceAdmin(const AppInstanceAdmin& value) { m_appInstanceAdmin = value; } /** *

The ARN and name of the AppInstanceUser, the ARN of the * AppInstance, and the created and last-updated timestamps. All * timestamps use epoch milliseconds.

*/ inline void SetAppInstanceAdmin(AppInstanceAdmin&& value) { m_appInstanceAdmin = std::move(value); } /** *

The ARN and name of the AppInstanceUser, the ARN of the * AppInstance, and the created and last-updated timestamps. All * timestamps use epoch milliseconds.

*/ inline DescribeAppInstanceAdminResult& WithAppInstanceAdmin(const AppInstanceAdmin& value) { SetAppInstanceAdmin(value); return *this;} /** *

The ARN and name of the AppInstanceUser, the ARN of the * AppInstance, and the created and last-updated timestamps. All * timestamps use epoch milliseconds.

*/ inline DescribeAppInstanceAdminResult& WithAppInstanceAdmin(AppInstanceAdmin&& value) { SetAppInstanceAdmin(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 DescribeAppInstanceAdminResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAppInstanceAdminResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAppInstanceAdminResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AppInstanceAdmin m_appInstanceAdmin; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws