CfnACLMixinProps
- class aws_cdk.mixins_preview.aws_memorydb.mixins.CfnACLMixinProps(*, acl_name=None, tags=None, user_names=None)
Bases:
objectProperties for CfnACLPropsMixin.
- Parameters:
acl_name (
Optional[str]) – The name of the Access Control List.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .user_names (
Optional[Sequence[str]]) – The list of users that belong to the Access Control List.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-acl.html
- 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.mixins_preview.aws_memorydb import mixins as memorydb_mixins cfn_aCLMixin_props = memorydb_mixins.CfnACLMixinProps( acl_name="aclName", tags=[CfnTag( key="key", value="value" )], user_names=["userNames"] )
Attributes
- acl_name
The name of the Access Control List.
- user_names
The list of users that belong to the Access Control List.