CleanRoomsService / Paginator / ListPrivacyBudgets

ListPrivacyBudgets#

class CleanRoomsService.Paginator.ListPrivacyBudgets#
paginator = client.get_paginator('list_privacy_budgets')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from CleanRoomsService.Client.list_privacy_budgets().

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    A unique identifier for one of your memberships for a collaboration. The privacy budget is retrieved from the collaboration that this membership belongs to. Accepts a membership ID.

  • privacyBudgetType (string) –

    [REQUIRED]

    The privacy budget type.

  • 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

{
    'privacyBudgetSummaries': [
        {
            'id': 'string',
            'privacyBudgetTemplateId': 'string',
            'privacyBudgetTemplateArn': 'string',
            'membershipId': 'string',
            'membershipArn': 'string',
            'collaborationId': 'string',
            'collaborationArn': 'string',
            'type': 'DIFFERENTIAL_PRIVACY',
            'createTime': datetime(2015, 1, 1),
            'updateTime': datetime(2015, 1, 1),
            'budget': {
                'differentialPrivacy': {
                    'aggregations': [
                        {
                            'type': 'AVG'|'COUNT'|'COUNT_DISTINCT'|'SUM'|'STDDEV',
                            'maxCount': 123,
                            'remainingCount': 123
                        },
                    ],
                    'epsilon': 123
                }
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • privacyBudgetSummaries (list) –

      An array that summarizes the privacy budgets. The summary includes collaboration information, membership information, privacy budget template information, and privacy budget details.

      • (dict) –

        An array that summaries the specified privacy budget. This summary includes collaboration information, creation information, membership information, and privacy budget information.

        • id (string) –

          The unique identifier of the privacy budget.

        • privacyBudgetTemplateId (string) –

          The unique identifier of the privacy budget template.

        • privacyBudgetTemplateArn (string) –

          The ARN of the privacy budget template.

        • membershipId (string) –

          The identifier for a membership resource.

        • membershipArn (string) –

          The Amazon Resource Name (ARN) of the member who created the privacy budget summary.

        • collaborationId (string) –

          The unique identifier of the collaboration that contains this privacy budget.

        • collaborationArn (string) –

          The ARN of the collaboration that contains this privacy budget.

        • type (string) –

          Specifies the type of the privacy budget.

        • createTime (datetime) –

          The time at which the privacy budget was created.

        • updateTime (datetime) –

          The most recent time at which the privacy budget was updated.

        • budget (dict) –

          The provided privacy budget.

          Note

          This is a Tagged Union structure. Only one of the following top level keys will be set: differentialPrivacy. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

          'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
          
          • differentialPrivacy (dict) –

            An object that specifies the epsilon parameter and the utility in terms of total aggregations, as well as the remaining aggregations available.

            • aggregations (list) –

              This information includes the configured epsilon value and the utility in terms of total aggregations, as well as the remaining aggregations.

              • (dict) –

                Information about the total number of aggregations, as well as the remaining aggregations.

                • type (string) –

                  The different types of aggregation functions that you can perform.

                • maxCount (integer) –

                  The maximum number of aggregation functions that you can perform with the given privacy budget.

                • remainingCount (integer) –

                  The remaining number of aggregation functions that can be run with the available privacy budget.

            • epsilon (integer) –

              The epsilon value that you configured.

    • NextToken (string) –

      A token to resume pagination.