/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MemoryDB { namespace Model { /** *

The status of the ACL update

See Also:

AWS * API Reference

*/ class ACLsUpdateStatus { public: AWS_MEMORYDB_API ACLsUpdateStatus(); AWS_MEMORYDB_API ACLsUpdateStatus(Aws::Utils::Json::JsonView jsonValue); AWS_MEMORYDB_API ACLsUpdateStatus& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEMORYDB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

A list of ACLs pending to be applied.

*/ inline const Aws::String& GetACLToApply() const{ return m_aCLToApply; } /** *

A list of ACLs pending to be applied.

*/ inline bool ACLToApplyHasBeenSet() const { return m_aCLToApplyHasBeenSet; } /** *

A list of ACLs pending to be applied.

*/ inline void SetACLToApply(const Aws::String& value) { m_aCLToApplyHasBeenSet = true; m_aCLToApply = value; } /** *

A list of ACLs pending to be applied.

*/ inline void SetACLToApply(Aws::String&& value) { m_aCLToApplyHasBeenSet = true; m_aCLToApply = std::move(value); } /** *

A list of ACLs pending to be applied.

*/ inline void SetACLToApply(const char* value) { m_aCLToApplyHasBeenSet = true; m_aCLToApply.assign(value); } /** *

A list of ACLs pending to be applied.

*/ inline ACLsUpdateStatus& WithACLToApply(const Aws::String& value) { SetACLToApply(value); return *this;} /** *

A list of ACLs pending to be applied.

*/ inline ACLsUpdateStatus& WithACLToApply(Aws::String&& value) { SetACLToApply(std::move(value)); return *this;} /** *

A list of ACLs pending to be applied.

*/ inline ACLsUpdateStatus& WithACLToApply(const char* value) { SetACLToApply(value); return *this;} private: Aws::String m_aCLToApply; bool m_aCLToApplyHasBeenSet = false; }; } // namespace Model } // namespace MemoryDB } // namespace Aws