interface AuthenticationModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnUserPropsMixin.AuthenticationModeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnUserPropsMixin_AuthenticationModeProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnUserPropsMixin.AuthenticationModeProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnUserPropsMixin.AuthenticationModeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnUserPropsMixin » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const authenticationModeProperty: elasticache_mixins.CfnUserPropsMixin.AuthenticationModeProperty = {
passwords: ['passwords'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| passwords? | string[] | Specifies the passwords to use for authentication if Type is set to password . |
| type? | string | Specifies the authentication type. |
passwords?
Type:
string[]
(optional)
Specifies the passwords to use for authentication if Type is set to password .
type?
Type:
string
(optional)
Specifies the authentication type.
Possible options are IAM authentication, password and no password.

.NET
Go
Java
Python
TypeScript