interface UserReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MemoryDB.UserReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmemorydb#UserReference |
Java | software.amazon.awscdk.interfaces.memorydb.UserReference |
Python | aws_cdk.interfaces.aws_memorydb.UserReference |
TypeScript | aws-cdk-lib » interfaces » aws_memorydb » UserReference |
A reference to a User resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_memorydb as interfaces_aws_memorydb } from 'aws-cdk-lib/interfaces';
const userReference: interfaces_aws_memorydb.UserReference = {
userArn: 'userArn',
userName: 'userName',
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string | The ARN of the User resource. |
| user | string | The UserName of the User resource. |
userArn
Type:
string
The ARN of the User resource.
userName
Type:
string
The UserName of the User resource.

.NET
Go
Java
Python
TypeScript