Skip to main content

ac_ls

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

Overview

Nameac_ls
TypeResource
Idaws.memorydb.ac_ls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the ACL
clustersarrayA list of clusters associated with the ACL.
minimum_engine_versionstringThe minimum engine version supported for the ACL
namestringThe name of the Access Control List
pending_changesobjectA list of updates being applied to the ACL.
statusstringIndicates ACL status. Can be "creating", "active", "modifying", "deleting".
user_namesarrayThe list of user names that belong to the ACL.

Methods

The following methods are available for this resource:

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

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;