interface CfnACLProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MemoryDB.CfnACLProps |
Java | software.amazon.awscdk.services.memorydb.CfnACLProps |
Python | aws_cdk.aws_memorydb.CfnACLProps |
TypeScript | @aws-cdk/aws-memorydb » CfnACLProps |
Properties for defining a CfnACL.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as memorydb from '@aws-cdk/aws-memorydb';
const cfnACLProps: memorydb.CfnACLProps = {
aclName: 'aclName',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
userNames: ['userNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| acl | string | The name of the Access Control List. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| user | string[] | The list of users that belong to the Access Control List. |
aclName
Type:
string
The name of the Access Control List.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
userNames?
Type:
string[]
(optional)
The list of users that belong to the Access Control List.

.NET
Java
Python
TypeScript