Class UserReference
A reference to a User resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
UserId
The UserId of the User resource.
public string UserId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated