interface UserGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElastiCache.UserGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselasticache#UserGroupReference |
Java | software.amazon.awscdk.interfaces.elasticache.UserGroupReference |
Python | aws_cdk.interfaces.aws_elasticache.UserGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_elasticache » UserGroupReference |
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 { aws_elasticache as interfaces_aws_elasticache } from 'aws-cdk-lib/interfaces';
const userGroupReference: interfaces_aws_elasticache.UserGroupReference = {
userGroupArn: 'userGroupArn',
userGroupId: 'userGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string | The ARN of the UserGroup resource. |
| user | string | The UserGroupId of the UserGroup resource. |
userGroupArn
Type:
string
The ARN of the UserGroup resource.
userGroupId
Type:
string
The UserGroupId of the UserGroup resource.

.NET
Go
Java
Python
TypeScript