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

The Access Control List object that has been deleted.

*/ inline const ACL& GetACL() const{ return m_aCL; } /** *

The Access Control List object that has been deleted.

*/ inline void SetACL(const ACL& value) { m_aCL = value; } /** *

The Access Control List object that has been deleted.

*/ inline void SetACL(ACL&& value) { m_aCL = std::move(value); } /** *

The Access Control List object that has been deleted.

*/ inline DeleteACLResult& WithACL(const ACL& value) { SetACL(value); return *this;} /** *

The Access Control List object that has been deleted.

*/ inline DeleteACLResult& WithACL(ACL&& value) { SetACL(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 DeleteACLResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteACLResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteACLResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ACL m_aCL; Aws::String m_requestId; }; } // namespace Model } // namespace MemoryDB } // namespace Aws