CfnUserGroupMixinProps
- class aws_cdk.mixins_preview.aws_elasticache.mixins.CfnUserGroupMixinProps(*, engine=None, tags=None, user_group_id=None, user_ids=None)
Bases:
objectProperties for CfnUserGroupPropsMixin.
- Parameters:
engine (
Optional[str]) – The current supported values are valkey and redis.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The list of tags.user_group_id (
Optional[str]) – The ID of the user group.user_ids (
Optional[Sequence[str]]) – The list of user IDs that belong to the user group. A user nameddefaultmust be included.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # 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_elasticache import mixins as elasticache_mixins cfn_user_group_mixin_props = elasticache_mixins.CfnUserGroupMixinProps( engine="engine", tags=[CfnTag( key="key", value="value" )], user_group_id="userGroupId", user_ids=["userIds"] )
Attributes
- engine
The current supported values are valkey and redis.
- tags
The list of tags.
- user_group_id
The ID of the user group.
- user_ids
The list of user IDs that belong to the user group.
A user named
defaultmust be included.