interface AuthenticationModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnUser.AuthenticationModeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnUser_AuthenticationModeProperty |
Java | software.amazon.awscdk.services.elasticache.CfnUser.AuthenticationModeProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| type | string | Specifies 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 .

.NET
Go
Java
Python
TypeScript