aws_namespaces
Creates, updates, deletes, gets or lists an aws_namespaces resource.
Overview
| Name | aws_namespaces |
| Type | Resource |
| Id | datadog.integrations.aws_namespaces |
Fields
The following fields are returned by SELECT queries:
- list_awsnamespaces
AWS Namespaces List object
| Name | Datatype | Description |
|---|---|---|
id | string | The AWSNamespacesResponseData id. (default: namespaces, example: namespaces) |
attributes | object | AWS Namespaces response attributes. |
type | string | The AWSNamespacesResponseData type. (default: namespaces, example: namespaces) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_awsnamespaces | select | region | Get a list of available AWS CloudWatch namespaces that can send metrics to Datadog. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | (default: datadoghq.com) |
SELECT examples
- list_awsnamespaces
Get a list of available AWS CloudWatch namespaces that can send metrics to Datadog.
SELECT
id,
attributes,
type
FROM datadog.integrations.aws_namespaces
WHERE region = '{{ region }}' -- required
;