interface AuthenticationModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnUserPropsMixin.AuthenticationModeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnUserPropsMixin_AuthenticationModeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnUserPropsMixin.AuthenticationModeProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnUserPropsMixin.AuthenticationModeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » 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 { aws_elasticache as elasticache } from '@aws-cdk/cfn-property-mixins';
const authenticationModeProperty: elasticache.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