ListTables - AWS Billing and Cost Management

ListTables

Lists all available tables in data exports.

Request Syntax

{ "MaxResults": number, "NextToken": "string" }

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters.

The request accepts the following data in JSON format.

MaxResults

The maximum number of objects that are returned for the request.

Type: Integer

Valid Range: Minimum value of 1.

Required: No

NextToken

The token to retrieve the next set of results.

Type: String

Length Constraints: Minimum length of 0. Maximum length of 8192.

Pattern: ^[\S\s]*$

Required: No

Response Syntax

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

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

NextToken

The token to retrieve the next set of results.

Type: String

Length Constraints: Minimum length of 0. Maximum length of 8192.

Pattern: ^[\S\s]*$

Tables

The list of tables.

Type: Array of Table objects

Errors

For information about the errors that are common to all actions, see Common Errors.

InternalServerException

An error on the server occurred during the processing of your request. Try again later.

HTTP Status Code: 500

ThrottlingException

The request was denied due to request throttling.

HTTP Status Code: 400

ValidationException

The input fails to satisfy the constraints specified by an AWS service.

HTTP Status Code: 400

Examples

The following is a sample request of the ListTables operation.

This example illustrates one usage of ListTables.

Sample Request

{ "MaxResults": 100, "NextToken": "" }

The following is a sample response of the ListTables operation.

This example illustrates one usage of ListTables.

Sample Response

{ "Tables": [ { "Description": "A view over CUR for CostAndUsageDashboard", "TableName": "COST_AND_USAGE_DASHBOARD", "TableProperties": [ {} ] }, { "Description": "Cost and Usage Report", "TableName": "COST_AND_USAGE_REPORT", "TableProperties": [ { "DefaultValue": "HOURLY", "Description": "The granularity of the line-items in the table.", "Name": "TIME_GRANULARITY", "ValidValues": [ "DAILY", "MONTHLY", "HOURLY" ] }, { "DefaultValue": "FALSE", "Description": "Whether to simulate manual discounts for automated discount data.", "Name": "INCLUDE_MANUAL_DISCOUNT_COMPATIBILITY", "ValidValues": [ "TRUE", "FALSE" ] }, { "DefaultValue": "FALSE", "Description": "Whether to include fission columns.", "Name": "INCLUDE_SPLIT_COST_ALLOCATION_DATA", "ValidValues": [ "TRUE", "FALSE" ] }, { "DefaultValue": "FALSE", "Description": "Whether to include resource IDs on line items.", "Name": "INCLUDE_RESOURCES", "ValidValues": [ "TRUE", "FALSE" ] } ] } ] }

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following: