Skip to main content

account_attributes

Creates, updates, deletes, gets or lists an account_attributes resource.

Overview

Nameaccount_attributes
TypeResource
Idaws.redshift.account_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attribute_namestringThe name of the attribute.
attribute_valuesstringA list of attribute values.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_attributesselectregionAttributeNamesReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
AttributeNamesarrayA list of attribute names.

SELECT examples

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 }}'
;