/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies one or more attributes to remove from all the endpoints that are
* associated with an application.See Also:
AWS
* API Reference
An array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline const Aws::VectorAn array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline bool BlacklistHasBeenSet() const { return m_blacklistHasBeenSet; } /** *An array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline void SetBlacklist(const Aws::VectorAn array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline void SetBlacklist(Aws::VectorAn array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline UpdateAttributesRequest& WithBlacklist(const Aws::VectorAn array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline UpdateAttributesRequest& WithBlacklist(Aws::VectorAn array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline UpdateAttributesRequest& AddBlacklist(const Aws::String& value) { m_blacklistHasBeenSet = true; m_blacklist.push_back(value); return *this; } /** *An array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline UpdateAttributesRequest& AddBlacklist(Aws::String&& value) { m_blacklistHasBeenSet = true; m_blacklist.push_back(std::move(value)); return *this; } /** *An array of the attributes to remove from all the endpoints that are * associated with the application. The array can specify the complete, exact name * of each attribute to remove or it can specify a glob pattern that an attribute * name must match in order for the attribute to be removed.
*/ inline UpdateAttributesRequest& AddBlacklist(const char* value) { m_blacklistHasBeenSet = true; m_blacklist.push_back(value); return *this; } private: Aws::Vector