/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Returns the updates being applied to the ACL.See Also:
AWS
* API Reference
A list of user names being removed from the ACL
*/ inline const Aws::VectorA list of user names being removed from the ACL
*/ inline bool UserNamesToRemoveHasBeenSet() const { return m_userNamesToRemoveHasBeenSet; } /** *A list of user names being removed from the ACL
*/ inline void SetUserNamesToRemove(const Aws::VectorA list of user names being removed from the ACL
*/ inline void SetUserNamesToRemove(Aws::VectorA list of user names being removed from the ACL
*/ inline ACLPendingChanges& WithUserNamesToRemove(const Aws::VectorA list of user names being removed from the ACL
*/ inline ACLPendingChanges& WithUserNamesToRemove(Aws::VectorA list of user names being removed from the ACL
*/ inline ACLPendingChanges& AddUserNamesToRemove(const Aws::String& value) { m_userNamesToRemoveHasBeenSet = true; m_userNamesToRemove.push_back(value); return *this; } /** *A list of user names being removed from the ACL
*/ inline ACLPendingChanges& AddUserNamesToRemove(Aws::String&& value) { m_userNamesToRemoveHasBeenSet = true; m_userNamesToRemove.push_back(std::move(value)); return *this; } /** *A list of user names being removed from the ACL
*/ inline ACLPendingChanges& AddUserNamesToRemove(const char* value) { m_userNamesToRemoveHasBeenSet = true; m_userNamesToRemove.push_back(value); return *this; } /** *A list of users being added to the ACL
*/ inline const Aws::VectorA list of users being added to the ACL
*/ inline bool UserNamesToAddHasBeenSet() const { return m_userNamesToAddHasBeenSet; } /** *A list of users being added to the ACL
*/ inline void SetUserNamesToAdd(const Aws::VectorA list of users being added to the ACL
*/ inline void SetUserNamesToAdd(Aws::VectorA list of users being added to the ACL
*/ inline ACLPendingChanges& WithUserNamesToAdd(const Aws::VectorA list of users being added to the ACL
*/ inline ACLPendingChanges& WithUserNamesToAdd(Aws::VectorA list of users being added to the ACL
*/ inline ACLPendingChanges& AddUserNamesToAdd(const Aws::String& value) { m_userNamesToAddHasBeenSet = true; m_userNamesToAdd.push_back(value); return *this; } /** *A list of users being added to the ACL
*/ inline ACLPendingChanges& AddUserNamesToAdd(Aws::String&& value) { m_userNamesToAddHasBeenSet = true; m_userNamesToAdd.push_back(std::move(value)); return *this; } /** *A list of users being added to the ACL
*/ inline ACLPendingChanges& AddUserNamesToAdd(const char* value) { m_userNamesToAddHasBeenSet = true; m_userNamesToAdd.push_back(value); return *this; } private: Aws::Vector