QuickSight / Paginator / ListDlpSettings

ListDlpSettings

class QuickSight.Paginator.ListDlpSettings
paginator = client.get_paginator('list_dlp_settings')
paginate(**kwargs)

Creates an iterator that will paginate through responses from QuickSight.Client.list_dlp_settings().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    AwsAccountId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • AwsAccountId (string) –

    [REQUIRED]

    The ID of the Amazon Web Services account that contains the DLP settings that you want to list.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'DlpSettingSummaries': [
        {
            'DlpSettingId': 'string',
            'Name': 'string',
            'Arn': 'string',
            'Status': 'ACTIVE'|'INACTIVE',
            'ProviderType': 'MICROSOFT_PURVIEW',
            'CreatedAt': datetime(2015, 1, 1),
            'UpdatedAt': datetime(2015, 1, 1)
        },
    ],
    'RequestId': 'string'
}

Response Structure

  • (dict) –

    • DlpSettingSummaries (list) –

      A list of DlpSettingSummary objects for the DLP settings in the account. The list is empty if no DLP settings have been configured.

      • (dict) –

        A summary of a DLP setting returned by list operations.

        • DlpSettingId (string) –

          The ID of the DLP setting.

        • Name (string) –

          The display name of the DLP setting.

        • Arn (string) –

          The Amazon Resource Name (ARN) of the DLP setting.

        • Status (string) –

          The status of the DLP setting. Valid values are ACTIVE and INACTIVE.

        • ProviderType (string) –

          The type of external DLP provider used for sensitivity label classification.

        • CreatedAt (datetime) –

          The date and time that the DLP setting was created, in ISO 8601 format.

        • UpdatedAt (datetime) –

          The date and time that the DLP setting was most recently updated, in ISO 8601 format.

    • RequestId (string) –

      The Amazon Web Services request ID for this operation.