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

The details of the Firewall Manager applications list.

*/ inline const AppsListData& GetAppsList() const{ return m_appsList; } /** *

The details of the Firewall Manager applications list.

*/ inline void SetAppsList(const AppsListData& value) { m_appsList = value; } /** *

The details of the Firewall Manager applications list.

*/ inline void SetAppsList(AppsListData&& value) { m_appsList = std::move(value); } /** *

The details of the Firewall Manager applications list.

*/ inline PutAppsListResult& WithAppsList(const AppsListData& value) { SetAppsList(value); return *this;} /** *

The details of the Firewall Manager applications list.

*/ inline PutAppsListResult& WithAppsList(AppsListData&& value) { SetAppsList(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the applications list.

*/ inline const Aws::String& GetAppsListArn() const{ return m_appsListArn; } /** *

The Amazon Resource Name (ARN) of the applications list.

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

The Amazon Resource Name (ARN) of the applications list.

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

The Amazon Resource Name (ARN) of the applications list.

*/ inline void SetAppsListArn(const char* value) { m_appsListArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the applications list.

*/ inline PutAppsListResult& WithAppsListArn(const Aws::String& value) { SetAppsListArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the applications list.

*/ inline PutAppsListResult& WithAppsListArn(Aws::String&& value) { SetAppsListArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the applications list.

*/ inline PutAppsListResult& WithAppsListArn(const char* value) { SetAppsListArn(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 PutAppsListResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutAppsListResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutAppsListResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AppsListData m_appsList; Aws::String m_appsListArn; Aws::String m_requestId; }; } // namespace Model } // namespace FMS } // namespace Aws