interface LoginProfileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IAM.Mixins.CfnUserPropsMixin.LoginProfileProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiam/mixins#CfnUserPropsMixin_LoginProfileProperty |
Java | software.amazon.awscdk.mixins.preview.services.iam.mixins.CfnUserPropsMixin.LoginProfileProperty |
Python | aws_cdk.mixins_preview.aws_iam.mixins.CfnUserPropsMixin.LoginProfileProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iam » mixins » CfnUserPropsMixin » LoginProfileProperty |
Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console .
For more information about managing passwords, see Managing Passwords in the IAM User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iam_mixins } from '@aws-cdk/mixins-preview/aws-iam';
const loginProfileProperty: iam_mixins.CfnUserPropsMixin.LoginProfileProperty = {
password: 'password',
passwordResetRequired: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | string | The user's password. |
| password | boolean | IResolvable | Specifies whether the user is required to set a new password on next sign-in. |
password?
Type:
string
(optional)
The user's password.
passwordResetRequired?
Type:
boolean | IResolvable
(optional)
Specifies whether the user is required to set a new password on next sign-in.

.NET
Go
Java
Python
TypeScript