Interface UserGroupReference
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- UserGroupReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:39.715Z")
@Stability(Stable)
public interface UserGroupReference
extends software.amazon.jsii.JsiiSerializable
A reference to a UserGroup resource.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.elasticache.*;
 UserGroupReference userGroupReference = UserGroupReference.builder()
         .userGroupArn("userGroupArn")
         .userGroupId("userGroupId")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forUserGroupReferencestatic final classAn implementation forUserGroupReference
- 
Method SummaryModifier and TypeMethodDescriptionstatic UserGroupReference.Builderbuilder()The ARN of the UserGroup resource.The UserGroupId of the UserGroup resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getUserGroupArnThe ARN of the UserGroup resource.
- 
getUserGroupIdThe UserGroupId of the UserGroup resource.
- 
builder- Returns:
- a UserGroupReference.BuilderofUserGroupReference
 
 
-