interface CfnUserGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnUserGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnUserGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnUserGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnUserGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnUserGroupMixinProps |
Properties for CfnUserGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const cfnUserGroupMixinProps: elasticache_mixins.CfnUserGroupMixinProps = {
engine: 'engine',
tags: [{
key: 'key',
value: 'value',
}],
userGroupId: 'userGroupId',
userIds: ['userIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| engine? | string | The current supported values are valkey and redis. |
| tags? | Cfn[] | The list of tags. |
| user | string | The ID of the user group. |
| user | string[] | The list of user IDs that belong to the user group. |
engine?
Type:
string
(optional)
The current supported values are valkey and redis.
tags?
Type:
Cfn[]
(optional)
The list of tags.
userGroupId?
Type:
string
(optional)
The ID of the user group.
userIds?
Type:
string[]
(optional)
The list of user IDs that belong to the user group.
A user named default must be included.

.NET
Go
Java
Python
TypeScript