CfnUserGroupMixinProps

class aws_cdk.mixins_preview.aws_elasticache.mixins.CfnUserGroupMixinProps(*, engine=None, tags=None, user_group_id=None, user_ids=None)

Bases: object

Properties 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 named default must be included.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-engine

tags

The list of tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-tags

user_group_id

The ID of the user group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-usergroupid

user_ids

The list of user IDs that belong to the user group.

A user named default must be included.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-userids