Show / Hide Table of Contents

Class UserGroupReference

A reference to a UserGroup resource.

Inheritance
object
UserGroupReference
Implements
IUserGroupReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

UserGroupId

The UserGroupId of the UserGroup resource.

public string UserGroupId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IUserGroupReference
Back to top Generated by DocFX