Skip to content

Create Acl

memorydb_create_acl R Documentation

Creates an Access Control List

Description

Creates an Access Control List. For more information, see Authenticating users with Access Contol Lists (ACLs).

Usage

memorydb_create_acl(ACLName, UserNames, Tags)

Arguments

ACLName

[required] The name of the Access Control List.

UserNames

The list of users that belong to the Access Control List.

Tags

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

Value

A list with the following syntax:

list(
  ACL = list(
    Name = "string",
    Status = "string",
    UserNames = list(
      "string"
    ),
    MinimumEngineVersion = "string",
    PendingChanges = list(
      UserNamesToRemove = list(
        "string"
      ),
      UserNamesToAdd = list(
        "string"
      )
    ),
    Clusters = list(
      "string"
    ),
    ARN = "string"
  )
)

Request syntax

svc$create_acl(
  ACLName = "string",
  UserNames = list(
    "string"
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)