Interface CfnUserGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.134Z")
@Stability(Stable)
public interface CfnUserGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.elasticache.*;
CfnUserGroupMixinProps cfnUserGroupMixinProps = CfnUserGroupMixinProps.builder()
.engine("engine")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userGroupId("userGroupId")
.userIds(List.of("userIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserGroupMixinPropsstatic final classAn implementation forCfnUserGroupMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEngine
The current supported values are valkey and redis.- See Also:
-
getTags
The list of tags.- See Also:
-
getUserGroupId
The ID of the user group.- See Also:
-
getUserIds
The list of user IDs that belong to the user group.A user named
defaultmust be included.- See Also:
-
builder
- Returns:
- a
CfnUserGroupMixinProps.BuilderofCfnUserGroupMixinProps
-