Macie2 / Client / get_findings_filter

get_findings_filter#

Macie2.Client.get_findings_filter(**kwargs)#

Retrieves the criteria and other settings for a findings filter.

See also: AWS API Documentation

Request Syntax

response = client.get_findings_filter(
    id='string'
)
Parameters:

id (string) –

[REQUIRED]

The unique identifier for the Amazon Macie resource that the request applies to.

Return type:

dict

Returns:

Response Syntax

{
    'action': 'ARCHIVE'|'NOOP',
    'arn': 'string',
    'description': 'string',
    'findingCriteria': {
        'criterion': {
            'string': {
                'eq': [
                    'string',
                ],
                'eqExactMatch': [
                    'string',
                ],
                'gt': 123,
                'gte': 123,
                'lt': 123,
                'lte': 123,
                'neq': [
                    'string',
                ]
            }
        }
    },
    'id': 'string',
    'name': 'string',
    'position': 123,
    'tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) –

    The request succeeded.

    • action (string) –

      The action that’s performed on findings that match the filter criteria (findingCriteria). Possible values are: ARCHIVE, suppress (automatically archive) the findings; and, NOOP, don’t perform any action on the findings.

    • arn (string) –

      The Amazon Resource Name (ARN) of the filter.

    • description (string) –

      The custom description of the filter.

    • findingCriteria (dict) –

      The criteria that’s used to filter findings.

      • criterion (dict) –

        A condition that specifies the property, operator, and one or more values to use to filter the results.

        • (string) –

          • (dict) –

            Specifies the operator to use in a property-based condition that filters the results of a query for findings. For detailed information and examples of each operator, see Fundamentals of filtering findings in the Amazon Macie User Guide.

            • eq (list) –

              The value for the property matches (equals) the specified value. If you specify multiple values, Macie uses OR logic to join the values.

              • (string) –

            • eqExactMatch (list) –

              The value for the property exclusively matches (equals an exact match for) all the specified values. If you specify multiple values, Amazon Macie uses AND logic to join the values.

              You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

              • (string) –

            • gt (integer) –

              The value for the property is greater than the specified value.

            • gte (integer) –

              The value for the property is greater than or equal to the specified value.

            • lt (integer) –

              The value for the property is less than the specified value.

            • lte (integer) –

              The value for the property is less than or equal to the specified value.

            • neq (list) –

              The value for the property doesn’t match (doesn’t equal) the specified value. If you specify multiple values, Macie uses OR logic to join the values.

              • (string) –

    • id (string) –

      The unique identifier for the filter.

    • name (string) –

      The custom name of the filter.

    • position (integer) –

      The position of the filter in the list of saved filters on the Amazon Macie console. This value also determines the order in which the filter is applied to findings, relative to other filters that are also applied to the findings.

    • tags (dict) –

      A map of key-value pairs that specifies which tags (keys and values) are associated with the filter.

      • (string) –

        • (string) –

Exceptions