ac_ls
Creates, updates, deletes, gets or lists an ac_ls resource.
Overview
| Name | ac_ls |
| Type | Resource |
| Id | aws.memorydb.ac_ls |
Fields
The following fields are returned by SELECT queries:
- describe_ac_ls
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) of the ACL |
clusters | array | A list of clusters associated with the ACL. |
minimum_engine_version | string | The minimum engine version supported for the ACL |
name | string | The name of the Access Control List |
pending_changes | object | A list of updates being applied to the ACL. |
status | string | Indicates ACL status. Can be "creating", "active", "modifying", "deleting". |
user_names | array | The list of user names that belong to the ACL. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_ac_ls | select | region | Returns a list of ACLs. |
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_ac_ls
Returns a list of ACLs.
SELECT
arn,
clusters,
minimum_engine_version,
name,
pending_changes,
status,
user_names
FROM aws.memorydb.ac_ls
WHERE region = '{{ region }}' -- required
;