Class UserGroupReference
A reference to a UserGroup resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class UserGroupReference : IUserGroupReference
Syntax (vb)
Public Class UserGroupReference Implements IUserGroupReference
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 userGroupReference = new UserGroupReference {
UserGroupArn = "userGroupArn",
UserGroupId = "userGroupId"
};
Synopsis
Constructors
UserGroupReference() | A reference to a UserGroup resource. |
Properties
UserGroupArn | The ARN of the UserGroup resource. |
UserGroupId | The UserGroupId of the UserGroup resource. |
Constructors
UserGroupReference()
A reference to a UserGroup resource.
public UserGroupReference()
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 userGroupReference = new UserGroupReference {
UserGroupArn = "userGroupArn",
UserGroupId = "userGroupId"
};
Properties
UserGroupArn
The ARN of the UserGroup resource.
public string UserGroupArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
UserGroupId
The UserGroupId of the UserGroup resource.
public string UserGroupId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated