interface CfnACLMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MemoryDB.CfnACLMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmemorydb#CfnACLMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.memorydb.CfnACLMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_memorydb.CfnACLMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_memorydb » 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 { aws_memorydb as memorydb } from '@aws-cdk/cfn-property-mixins';
const cfnACLMixinProps: memorydb.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