UserReference
- class aws_cdk.aws_elasticache.UserReference(*, user_arn, user_id)
Bases:
object
A reference to a User resource.
- Parameters:
user_arn (
str
) – The ARN of the User resource.user_id (
str
) – The UserId 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_elasticache as elasticache user_reference = elasticache.UserReference( user_arn="userArn", user_id="userId" )
Attributes
- user_arn
The ARN of the User resource.
- user_id
The UserId of the User resource.