account_attributes
Creates, updates, deletes, gets or lists an account_attributes resource.
Overview
| Name | account_attributes |
| Type | Resource |
| Id | aws.redshift.account_attributes |
Fields
The following fields are returned by SELECT queries:
- describe_account_attributes
| Name | Datatype | Description |
|---|---|---|
attribute_name | string | The name of the attribute. |
attribute_values | string | A list of attribute values. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_attributes | select | region | AttributeNames | Returns a list of attributes attached to an account |
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) |
AttributeNames | array | A list of attribute names. |
SELECT examples
- describe_account_attributes
Returns a list of attributes attached to an account
SELECT
attribute_name,
attribute_values
FROM aws.redshift.account_attributes
WHERE region = '{{ region }}' -- required
AND AttributeNames = '{{ AttributeNames }}'
;