Show / Hide Table of Contents

Class UserReference

A reference to a User resource.

Inheritance
object
UserReference
Implements
IUserReference
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 UserReference : IUserReference
Syntax (vb)
Public Class UserReference Implements IUserReference
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 userReference = new UserReference {
                UserArn = "userArn",
                UserId = "userId"
            };

Synopsis

Constructors

UserReference()

A reference to a User resource.

Properties

UserArn

The ARN of the User resource.

UserId

The UserId of the User resource.

Constructors

UserReference()

A reference to a User resource.

public UserReference()
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 userReference = new UserReference {
                UserArn = "userArn",
                UserId = "userId"
            };

Properties

UserArn

The ARN of the User resource.

public string UserArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

UserId

The UserId of the User resource.

public string UserId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IUserReference
Back to top Generated by DocFX