interface LoginProfileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IAM.CfnUserPropsMixin.LoginProfileProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiam#CfnUserPropsMixin_LoginProfileProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iam.CfnUserPropsMixin.LoginProfileProperty |
Python | aws_cdk.cfn_property_mixins.aws_iam.CfnUserPropsMixin.LoginProfileProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iam » 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 { aws_iam as iam } from '@aws-cdk/cfn-property-mixins';
const loginProfileProperty: iam.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