Interface ICfnUserGroupProps
Properties for defining a CfnUserGroup.
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnUserGroupProps
Syntax (vb)
Public Interface ICfnUserGroupProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElastiCache;
var cfnUserGroupProps = new CfnUserGroupProps {
Engine = "engine",
UserGroupId = "userGroupId",
UserIds = new [] { "userIds" },
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| Engine | The current supported values are valkey and redis. |
| Tags | The list of tags. |
| UserGroupId | The ID of the user group. |
| UserIds | The list of user IDs that belong to the user group. |
Properties
Engine
The current supported values are valkey and redis.
string Engine { get; }
Property Value
Remarks
Tags
UserGroupId
The ID of the user group.
string UserGroupId { get; }
Property Value
Remarks
UserIds
The list of user IDs that belong to the user group.
string[] UserIds { get; }
Property Value
string[]
Remarks
A user named default must be included.