/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.identitymanagement.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in. *
** This data type is used as a response element in the GetAccountAuthorizationDetails operation. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UserDetail implements Serializable, Cloneable { /** ** The path to the user. For more information about paths, see IAM identifiers in the IAM * User Guide. *
*/ private String path; /** ** The friendly name identifying the user. *
*/ private String userName; /** ** The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM * User Guide. *
*/ private String userId; private String arn; /** ** The date and time, in ISO 8601 date-time format, when the user was * created. *
*/ private java.util.Date createDate; /** ** A list of the inline policies embedded in the user. *
*/ private com.amazonaws.internal.SdkInternalList* A list of IAM groups that the user is in. *
*/ private com.amazonaws.internal.SdkInternalList* A list of the managed policies attached to the user. *
*/ private com.amazonaws.internal.SdkInternalList* The ARN of the policy used to set the permissions boundary for the user. *
** For more information about permissions boundaries, see Permissions boundaries * for IAM identities in the IAM User Guide. *
*/ private AttachedPermissionsBoundary permissionsBoundary; /** ** A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
*/ private com.amazonaws.internal.SdkInternalList* The path to the user. For more information about paths, see IAM identifiers in the IAM * User Guide. *
* * @param path * The path to the user. For more information about paths, see IAM identifiers in the * IAM User Guide. */ public void setPath(String path) { this.path = path; } /** ** The path to the user. For more information about paths, see IAM identifiers in the IAM * User Guide. *
* * @return The path to the user. For more information about paths, see IAM identifiers in the * IAM User Guide. */ public String getPath() { return this.path; } /** ** The path to the user. For more information about paths, see IAM identifiers in the IAM * User Guide. *
* * @param path * The path to the user. For more information about paths, see IAM identifiers in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withPath(String path) { setPath(path); return this; } /** ** The friendly name identifying the user. *
* * @param userName * The friendly name identifying the user. */ public void setUserName(String userName) { this.userName = userName; } /** ** The friendly name identifying the user. *
* * @return The friendly name identifying the user. */ public String getUserName() { return this.userName; } /** ** The friendly name identifying the user. *
* * @param userName * The friendly name identifying the user. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withUserName(String userName) { setUserName(userName); return this; } /** ** The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM * User Guide. *
* * @param userId * The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the * IAM User Guide. */ public void setUserId(String userId) { this.userId = userId; } /** ** The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM * User Guide. *
* * @return The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the * IAM User Guide. */ public String getUserId() { return this.userId; } /** ** The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM * User Guide. *
* * @param userId * The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withUserId(String userId) { setUserId(userId); return this; } /** * @param arn */ public void setArn(String arn) { this.arn = arn; } /** * @return */ public String getArn() { return this.arn; } /** * @param arn * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withArn(String arn) { setArn(arn); return this; } /** ** The date and time, in ISO 8601 date-time format, when the user was * created. *
* * @param createDate * The date and time, in ISO 8601 date-time format, when the * user was created. */ public void setCreateDate(java.util.Date createDate) { this.createDate = createDate; } /** ** The date and time, in ISO 8601 date-time format, when the user was * created. *
* * @return The date and time, in ISO 8601 date-time format, when the * user was created. */ public java.util.Date getCreateDate() { return this.createDate; } /** ** The date and time, in ISO 8601 date-time format, when the user was * created. *
* * @param createDate * The date and time, in ISO 8601 date-time format, when the * user was created. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withCreateDate(java.util.Date createDate) { setCreateDate(createDate); return this; } /** ** A list of the inline policies embedded in the user. *
* * @return A list of the inline policies embedded in the user. */ public java.util.List* A list of the inline policies embedded in the user. *
* * @param userPolicyList * A list of the inline policies embedded in the user. */ public void setUserPolicyList(java.util.Collection* A list of the inline policies embedded in the user. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setUserPolicyList(java.util.Collection)} or {@link #withUserPolicyList(java.util.Collection)} if you want * to override the existing values. *
* * @param userPolicyList * A list of the inline policies embedded in the user. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withUserPolicyList(PolicyDetail... userPolicyList) { if (this.userPolicyList == null) { setUserPolicyList(new com.amazonaws.internal.SdkInternalList* A list of the inline policies embedded in the user. *
* * @param userPolicyList * A list of the inline policies embedded in the user. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withUserPolicyList(java.util.Collection* A list of IAM groups that the user is in. *
* * @return A list of IAM groups that the user is in. */ public java.util.List* A list of IAM groups that the user is in. *
* * @param groupList * A list of IAM groups that the user is in. */ public void setGroupList(java.util.Collection* A list of IAM groups that the user is in. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setGroupList(java.util.Collection)} or {@link #withGroupList(java.util.Collection)} if you want to * override the existing values. *
* * @param groupList * A list of IAM groups that the user is in. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withGroupList(String... groupList) { if (this.groupList == null) { setGroupList(new com.amazonaws.internal.SdkInternalList* A list of IAM groups that the user is in. *
* * @param groupList * A list of IAM groups that the user is in. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withGroupList(java.util.Collection* A list of the managed policies attached to the user. *
* * @return A list of the managed policies attached to the user. */ public java.util.List* A list of the managed policies attached to the user. *
* * @param attachedManagedPolicies * A list of the managed policies attached to the user. */ public void setAttachedManagedPolicies(java.util.Collection* A list of the managed policies attached to the user. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setAttachedManagedPolicies(java.util.Collection)} or * {@link #withAttachedManagedPolicies(java.util.Collection)} if you want to override the existing values. *
* * @param attachedManagedPolicies * A list of the managed policies attached to the user. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withAttachedManagedPolicies(AttachedPolicy... attachedManagedPolicies) { if (this.attachedManagedPolicies == null) { setAttachedManagedPolicies(new com.amazonaws.internal.SdkInternalList* A list of the managed policies attached to the user. *
* * @param attachedManagedPolicies * A list of the managed policies attached to the user. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withAttachedManagedPolicies(java.util.Collection* The ARN of the policy used to set the permissions boundary for the user. *
** For more information about permissions boundaries, see Permissions boundaries * for IAM identities in the IAM User Guide. *
* * @param permissionsBoundary * The ARN of the policy used to set the permissions boundary for the user. ** For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide. */ public void setPermissionsBoundary(AttachedPermissionsBoundary permissionsBoundary) { this.permissionsBoundary = permissionsBoundary; } /** *
* The ARN of the policy used to set the permissions boundary for the user. *
** For more information about permissions boundaries, see Permissions boundaries * for IAM identities in the IAM User Guide. *
* * @return The ARN of the policy used to set the permissions boundary for the user. ** For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide. */ public AttachedPermissionsBoundary getPermissionsBoundary() { return this.permissionsBoundary; } /** *
* The ARN of the policy used to set the permissions boundary for the user. *
** For more information about permissions boundaries, see Permissions boundaries * for IAM identities in the IAM User Guide. *
* * @param permissionsBoundary * The ARN of the policy used to set the permissions boundary for the user. ** For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withPermissionsBoundary(AttachedPermissionsBoundary permissionsBoundary) { setPermissionsBoundary(permissionsBoundary); return this; } /** *
* A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @return A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public java.util.List* A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @param tags * A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public void setTags(java.util.Collection* A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @param tags * A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetail withTags(java.util.Collection