/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The status of the ACL updateSee Also:
AWS
* API Reference
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