Show / Hide Table of Contents

Class UserLoginProfileState

Inheritance
System.Object
InputArgs
ResourceArgs
UserLoginProfileState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Iam
Assembly: Pulumi.Aws.dll
Syntax
public sealed class UserLoginProfileState : ResourceArgs

Constructors

View Source

UserLoginProfileState()

Declaration
public UserLoginProfileState()

Properties

View Source

EncryptedPassword

The encrypted password, base64 encoded. Only available if password was handled on this provider resource creation, not import.

Declaration
public Input<string> EncryptedPassword { get; set; }
Property Value
Type Description
Input<System.String>
View Source

KeyFingerprint

The fingerprint of the PGP key used to encrypt the password. Only available if password was handled on this provider resource creation, not import.

Declaration
public Input<string> KeyFingerprint { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PasswordLength

The length of the generated password on resource creation. Only applies on resource creation. Drift detection is not possible with this argument.

Declaration
public Input<int> PasswordLength { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

PasswordResetRequired

Whether the user should be forced to reset the generated password on resource creation. Only applies on resource creation. Drift detection is not possible with this argument.

Declaration
public Input<bool> PasswordResetRequired { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

PgpKey

Either a base-64 encoded PGP public key, or a keybase username in the form keybase:username. Only applies on resource creation. Drift detection is not possible with this argument.

Declaration
public Input<string> PgpKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

User

The IAM user's name.

Declaration
public Input<string> User { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.