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

Specifies managed data identifiers to exclude (not use) when performing * automated sensitive data discovery for an Amazon Macie account. For information * about the managed data identifiers that Amazon Macie currently provides, see Using * managed data identifiers in the Amazon Macie User * Guide.

See Also:

AWS * API Reference

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

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline const Aws::Vector& GetManagedDataIdentifierIds() const{ return m_managedDataIdentifierIds; } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline bool ManagedDataIdentifierIdsHasBeenSet() const { return m_managedDataIdentifierIdsHasBeenSet; } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline void SetManagedDataIdentifierIds(const Aws::Vector& value) { m_managedDataIdentifierIdsHasBeenSet = true; m_managedDataIdentifierIds = value; } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline void SetManagedDataIdentifierIds(Aws::Vector&& value) { m_managedDataIdentifierIdsHasBeenSet = true; m_managedDataIdentifierIds = std::move(value); } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline SensitivityInspectionTemplateExcludes& WithManagedDataIdentifierIds(const Aws::Vector& value) { SetManagedDataIdentifierIds(value); return *this;} /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline SensitivityInspectionTemplateExcludes& WithManagedDataIdentifierIds(Aws::Vector&& value) { SetManagedDataIdentifierIds(std::move(value)); return *this;} /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline SensitivityInspectionTemplateExcludes& AddManagedDataIdentifierIds(const Aws::String& value) { m_managedDataIdentifierIdsHasBeenSet = true; m_managedDataIdentifierIds.push_back(value); return *this; } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline SensitivityInspectionTemplateExcludes& AddManagedDataIdentifierIds(Aws::String&& value) { m_managedDataIdentifierIdsHasBeenSet = true; m_managedDataIdentifierIds.push_back(std::move(value)); return *this; } /** *

An array of unique identifiers, one for each managed data identifier to * exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers * operation.

*/ inline SensitivityInspectionTemplateExcludes& AddManagedDataIdentifierIds(const char* value) { m_managedDataIdentifierIdsHasBeenSet = true; m_managedDataIdentifierIds.push_back(value); return *this; } private: Aws::Vector m_managedDataIdentifierIds; bool m_managedDataIdentifierIdsHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws