BillingandCostManagementDataExports / Client / list_tables

list_tables#

BillingandCostManagementDataExports.Client.list_tables(**kwargs)#

Lists all available tables in data exports.

See also: AWS API Documentation

Request Syntax

response = client.list_tables(
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • MaxResults (integer) – The maximum number of objects that are returned for the request.

  • NextToken (string) – The token to retrieve the next set of results.

Return type:

dict

Returns:

Response Syntax

{
    'NextToken': 'string',
    'Tables': [
        {
            'Description': 'string',
            'TableName': 'string',
            'TableProperties': [
                {
                    'DefaultValue': 'string',
                    'Description': 'string',
                    'Name': 'string',
                    'ValidValues': [
                        'string',
                    ]
                },
            ]
        },
    ]
}

Response Structure

  • (dict) –

    • NextToken (string) –

      The token to retrieve the next set of results.

    • Tables (list) –

      The list of tables.

      • (dict) –

        The details for the data export table.

        • Description (string) –

          The description for the table.

        • TableName (string) –

          The name of the table.

        • TableProperties (list) –

          The properties for the table.

          • (dict) –

            The properties for the data export table.

            • DefaultValue (string) –

              The default value for the table.

            • Description (string) –

              The description for the table.

            • Name (string) –

              The name of the table.

            • ValidValues (list) –

              The valid values for the table.

              • (string) –

Exceptions