QuickSight / Paginator / ListLimitsProfiles

ListLimitsProfiles

class QuickSight.Paginator.ListLimitsProfiles
paginator = client.get_paginator('list_limits_profiles')
paginate(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    accountId='string',
    resourceType='INDEX_STORAGE'|'AGENT_HOURS',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • accountId (string) –

    [REQUIRED]

    The ID of the Amazon Web Services account that contains the limits profiles.

  • resourceType (string) – An optional filter that limits the results to profiles that contain the specified resource type. If you don’t specify a value, the operation returns all profiles.

  • 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

{
    'profiles': [
        {
            'profileId': 'string',
            'arn': 'string',
            'accountId': 'string',
            'profileName': 'string',
            'description': 'string',
            'resourceLimits': {
                'string': {
                    'maxValue': 123,
                    'unit': 'MB'|'GB'|'HOURS'|'DAYS'
                }
            },
            'createdAt': datetime(2015, 1, 1),
            'updatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • profiles (list) –

      A list of limits profiles.

      • (dict) –

        A limits profile that defines resource usage limits for Amazon Quick Sight users. Limits profiles can be assigned to users, groups, or roles to control resource consumption.

        • profileId (string) –

          The unique identifier for the limits profile.

        • arn (string) –

          The Amazon Resource Name (ARN) of the limits profile.

        • accountId (string) –

          The ID of the Amazon Web Services account that contains the limits profile.

        • profileName (string) –

          The display name of the limits profile.

        • description (string) –

          The description of the limits profile.

        • resourceLimits (dict) –

          A map of resource types to their limit values.

          • (string) –

            The type of resource that a limit applies to.

            • (dict) –

              A value that defines a resource usage limit, consisting of a maximum value and a unit of measurement.

              • maxValue (integer) –

                The maximum allowed value for the resource.

              • unit (string) –

                The unit of measurement for the limit value.

        • createdAt (datetime) –

          The date and time that the limits profile was created.

        • updatedAt (datetime) –

          The date and time that the limits profile was last updated.

    • NextToken (string) –

      A token to resume pagination.