Describe Account Attributes
redshift_describe_account_attributes | R Documentation |
Returns a list of attributes attached to an account¶
Description¶
Returns a list of attributes attached to an account
Usage¶
redshift_describe_account_attributes(AttributeNames)
Arguments¶
AttributeNames |
A list of attribute names. |
Value¶
A list with the following syntax:
list(
AccountAttributes = list(
list(
AttributeName = "string",
AttributeValues = list(
list(
AttributeValue = "string"
)
)
)
)
)
Request syntax¶
svc$describe_account_attributes(
AttributeNames = list(
"string"
)
)