managed_data_identifiers
Creates, updates, deletes, gets or lists a managed_data_identifiers resource.
Overview
| Name | managed_data_identifiers |
| Type | Resource |
| Id | aws.macie2.managed_data_identifiers |
Fields
The following fields are returned by SELECT queries:
- list_managed_data_identifiers
| Name | Datatype | Description |
|---|---|---|
id | string | The 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. |
category | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_managed_data_identifiers | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_managed_data_identifiers
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
;