interface AuthenticationModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnUserPropsMixin.AuthenticationModeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnUserPropsMixin_AuthenticationModeProperty |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnUserPropsMixin.AuthenticationModeProperty |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnUserPropsMixin.AuthenticationModeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » CfnUserPropsMixin » AuthenticationModeProperty |
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
Used in output responses.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as memorydb_mixins } from '@aws-cdk/mixins-preview/aws-memorydb';
const authenticationModeProperty: memorydb_mixins.CfnUserPropsMixin.AuthenticationModeProperty = {
passwords: ['passwords'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| passwords? | string[] | The password(s) used for authentication. |
| type? | string | Indicates whether the user requires a password to authenticate. |
passwords?
Type:
string[]
(optional)
The password(s) used for authentication.
type?
Type:
string
(optional)
Indicates whether the user requires a password to authenticate.
All newly-created users require a password.

.NET
Go
Java
Python
TypeScript