interface CfnUserMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnUserMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnUserMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnUserMixinProps |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnUserMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » CfnUserMixinProps |
Properties for CfnUserPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-user.html
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';
declare const authenticationMode: any;
const cfnUserMixinProps: memorydb_mixins.CfnUserMixinProps = {
accessString: 'accessString',
authenticationMode: authenticationMode,
tags: [{
key: 'key',
value: 'value',
}],
userName: 'userName',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | Access permissions string used for this user. |
| authentication | any | Denotes whether the user requires a password to authenticate. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| user | string | The name of the user. |
accessString?
Type:
string
(optional)
Access permissions string used for this user.
authenticationMode?
Type:
any
(optional)
Denotes whether the user requires a password to authenticate.
Example:
mynewdbuser: Type: AWS::MemoryDB::User Properties: AccessString: on ~* &* +@all AuthenticationMode: Passwords: '1234567890123456' Type: password UserName: mynewdbuser AuthenticationMode: { "Passwords": ["1234567890123456"], "Type": "Password" }
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
userName?
Type:
string
(optional)
The name of the user.

.NET
Go
Java
Python
TypeScript