Show / Hide Table of Contents

Class UserState

Inheritance
System.Object
InputArgs
ResourceArgs
UserState
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 UserState : ResourceArgs

Constructors

View Source

UserState()

Declaration
public UserState()

Properties

View Source

Arn

The ARN assigned by AWS for this user.

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

ForceDestroy

When destroying this user, destroy even if it has non-provider-managed IAM access keys, login profile or MFA devices. Without force_destroy a user with non-provider-managed access keys and login profile will fail to be destroyed.

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

Name

The user's name. The name must consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-_.. User names are not distinguished by case. For example, you cannot create users named both "TESTUSER" and "testuser".

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

Path

Path in which to create the user.

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

PermissionsBoundary

The ARN of the policy that is used to set the permissions boundary for the user.

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

Tags

Key-value mapping of tags for the IAM user

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

UniqueId

The [unique ID][1] assigned by AWS.

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