aws-cdk-lib.aws_elasticache.CfnUser.AuthenticationModeProperty

interface AuthenticationModeProperty

LanguageType name
.NETAmazon.CDK.AWS.ElastiCache.CfnUser.AuthenticationModeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnUser_AuthenticationModeProperty
Javasoftware.amazon.awscdk.services.elasticache.CfnUser.AuthenticationModeProperty
Pythonaws_cdk.aws_elasticache.CfnUser.AuthenticationModeProperty
TypeScript aws-cdk-lib » aws_elasticache » CfnUser » AuthenticationModeProperty

Specifies the authentication mode to use.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticache as elasticache } from 'aws-cdk-lib';
const authenticationModeProperty: elasticache.CfnUser.AuthenticationModeProperty = {
  type: 'type',

  // the properties below are optional
  passwords: ['passwords'],
};

Properties

NameTypeDescription
typestringSpecifies the authentication type.
passwords?string[]Specifies the passwords to use for authentication if Type is set to password .

type

Type: string

Specifies the authentication type.

Possible options are IAM authentication, password and no password.


passwords?

Type: string[] (optional)

Specifies the passwords to use for authentication if Type is set to password .