Show / Hide Table of Contents

Interface IUserAttributes

Represents a user defined outside of this stack.

Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUserAttributes
Syntax (vb)
Public Interface IUserAttributes
Remarks

ExampleMetadata: infused

Examples
var user = User.FromUserAttributes(this, "MyImportedUserByAttributes", new UserAttributes {
                UserArn = "arn:aws:iam::123456789012:user/johnsmith"
            });

Synopsis

Properties

UserArn

The ARN of the user.

Properties

UserArn

The ARN of the user.

string UserArn { get; }
Property Value

string

Remarks

Format: arn:<partition>:iam::<account-id>:user/<user-name-with-path>

Back to top Generated by DocFX