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

A structure representing a list of Lake Formation principals designated as * data lake administrators.

*/ inline const DataLakeSettings& GetDataLakeSettings() const{ return m_dataLakeSettings; } /** *

A structure representing a list of Lake Formation principals designated as * data lake administrators.

*/ inline void SetDataLakeSettings(const DataLakeSettings& value) { m_dataLakeSettings = value; } /** *

A structure representing a list of Lake Formation principals designated as * data lake administrators.

*/ inline void SetDataLakeSettings(DataLakeSettings&& value) { m_dataLakeSettings = std::move(value); } /** *

A structure representing a list of Lake Formation principals designated as * data lake administrators.

*/ inline GetDataLakeSettingsResult& WithDataLakeSettings(const DataLakeSettings& value) { SetDataLakeSettings(value); return *this;} /** *

A structure representing a list of Lake Formation principals designated as * data lake administrators.

*/ inline GetDataLakeSettingsResult& WithDataLakeSettings(DataLakeSettings&& value) { SetDataLakeSettings(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 GetDataLakeSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDataLakeSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDataLakeSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DataLakeSettings m_dataLakeSettings; Aws::String m_requestId; }; } // namespace Model } // namespace LakeFormation } // namespace Aws