ACLReference

class aws_cdk.aws_memorydb.ACLReference(*, acl_arn, acl_name)

Bases: object

A reference to a ACL resource.

Parameters:
  • acl_arn (str) – The ARN of the ACL resource.

  • acl_name (str) – The ACLName of the ACL resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_memorydb as memorydb

a_cLReference = memorydb.ACLReference(
    acl_arn="aclArn",
    acl_name="aclName"
)

Attributes

acl_arn

The ARN of the ACL resource.

acl_name

The ACLName of the ACL resource.