Skip to main content

managed_data_identifiers

Creates, updates, deletes, gets or lists a managed_data_identifiers resource.

Overview

Namemanaged_data_identifiers
TypeResource
Idaws.macie2.managed_data_identifiers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier for the managed data identifier. This is a string that describes the type of sensitive data that the managed data identifier detects. For example: OPENSSH_PRIVATE_KEY for OpenSSH private keys, CREDIT_CARD_NUMBER for credit card numbers, or USA_PASSPORT_NUMBER for US passport numbers.
categorystringThe category of sensitive data that the managed data identifier detects: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers. (FINANCIAL_INFORMATION, PERSONAL_INFORMATION, CREDENTIALS, CUSTOM_IDENTIFIER)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_managed_data_identifiersselectregionRetrieves information about all the managed data identifiers that Amazon Macie currently provides.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves information about all the managed data identifiers that Amazon Macie currently provides.

SELECT
id,
category
FROM aws.macie2.managed_data_identifiers
WHERE region = '{{ region }}' -- required
;