UserReference
- class aws_cdk.aws_memorydb.UserReference(*, user_arn, user_name)
Bases:
object
A reference to a User resource.
- Parameters:
user_arn (
str
) – The ARN of the User resource.user_name (
str
) – The UserName of the User resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_memorydb as memorydb user_reference = memorydb.UserReference( user_arn="userArn", user_name="userName" )
Attributes
- user_arn
The ARN of the User resource.
- user_name
The UserName of the User resource.