endpoints
Creates, updates, deletes, gets or lists an endpoints resource.
Overview
| Name | endpoints |
| Type | Resource |
| Id | aws.dynamodb.endpoints |
Fields
The following fields are returned by SELECT queries:
- describe_endpoints
| Name | Datatype | Description |
|---|---|---|
endpoints | array | List of endpoints. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_endpoints | select | region | Returns the regional endpoint information. For more information on policy permissions, please see Internetwork traffic privacy. |
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 | AWS region (default: us-east-1) |
SELECT examples
- describe_endpoints
Returns the regional endpoint information. For more information on policy permissions, please see Internetwork traffic privacy.
SELECT
endpoints
FROM aws.dynamodb.endpoints
WHERE region = '{{ region }}' -- required
;