interface CfnACLMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnACLMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnACLMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnACLMixinProps |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnACLMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » CfnACLMixinProps |
Properties for CfnACLPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-acl.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as memorydb_mixins } from '@aws-cdk/mixins-preview/aws-memorydb';
const cfnACLMixinProps: memorydb_mixins.CfnACLMixinProps = {
aclName: 'aclName',
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
(optional)
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
Go
Java
Python
TypeScript