TimestreamInfluxDB / Client / list_db_parameter_groups

list_db_parameter_groups#

TimestreamInfluxDB.Client.list_db_parameter_groups(**kwargs)#

Returns a list of Timestream for InfluxDB DB parameter groups.

See also: AWS API Documentation

Request Syntax

response = client.list_db_parameter_groups(
    nextToken='string',
    maxResults=123
)
Parameters:
  • nextToken (string) – The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.

  • maxResults (integer) – The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.

Return type:

dict

Returns:

Response Syntax

{
    'items': [
        {
            'id': 'string',
            'name': 'string',
            'arn': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • items (list) –

      A list of Timestream for InfluxDB DB parameter group summaries.

      • (dict) –

        Contains a summary of a DB parameter group.

        • id (string) –

          A service-generated unique identifier.

        • name (string) –

          This customer-supplied name uniquely identifies the parameter group.

        • arn (string) –

          The Amazon Resource Name (ARN) of the DB parameter group.

        • description (string) –

          A description of the DB parameter group.

    • nextToken (string) –

      Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.

Exceptions