interface ACLReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MemoryDB.ACLReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmemorydb#ACLReference |
Java | software.amazon.awscdk.interfaces.memorydb.ACLReference |
Python | aws_cdk.interfaces.aws_memorydb.ACLReference |
TypeScript | aws-cdk-lib » interfaces » aws_memorydb » ACLReference |
A reference to a ACL resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_memorydb as interfaces_aws_memorydb } from 'aws-cdk-lib/interfaces';
const aCLReference: interfaces_aws_memorydb.ACLReference = {
aclArn: 'aclArn',
aclName: 'aclName',
};
Properties
| Name | Type | Description |
|---|---|---|
| acl | string | The ARN of the ACL resource. |
| acl | string | The ACLName of the ACL resource. |
aclArn
Type:
string
The ARN of the ACL resource.
aclName
Type:
string
The ACLName of the ACL resource.

.NET
Go
Java
Python
TypeScript