enum UserEngine
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ElastiCache.Alpha.UserEngine |
![]() | github.com/aws/aws-cdk-go/awscdkelasticachealpha/v2#UserEngine |
![]() | software.amazon.awscdk.services.elasticache.alpha.UserEngine |
![]() | aws_cdk.aws_elasticache_alpha.UserEngine |
![]() | @aws-cdk/aws-elasticache-alpha » UserEngine |
Engine type for ElastiCache users and user groups.
Example
const user = new elasticache.IamUser(this, 'User', {
// set user engine
engine: elasticache.UserEngine.REDIS,
// set user id
userId: 'my-user',
// set username
userName: 'my-user',
// set access string
accessControl: elasticache.AccessControl.fromAccessString("on ~* +@all"),
});
Members
Name | Description |
---|---|
VALKEY | Valkey engine. |
REDIS | Redis engine. |
VALKEY
Valkey engine.
REDIS
Redis engine.