Container for the parameters to the UpdateGroup operation.

Updates the name and/or the path of the specified group.

IMPORTANT: You should understand the implications of changing a group's path or name. For more information, see Renaming Users and Groups in Using AWS Identity and Access Management.

NOTE:To change a group name the requester must have appropriate permissions on both the source object and the target object. For example, to change Managers to MGRs, the entity making the request must have permission on Managers and MGRs, or must have permission on all (*). For more information about permissions, see Permissions and Policies.

Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class UpdateGroupRequest : AmazonWebServiceRequest
Public Class UpdateGroupRequest _
	Inherits AmazonWebServiceRequest
public ref class UpdateGroupRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
UpdateGroupRequest()()()()
Initializes a new instance of the UpdateGroupRequest class
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
GroupName
Name of the group to update. If you're changing the name of the group, this is the original name.

Constraints:

Length
1 - 128
Pattern
[\w+=,.@-]*

NewGroupName
New name for the group. Only include this if changing the group's name.

Constraints:

Length
1 - 128
Pattern
[\w+=,.@-]*

NewPath
New path for the group. Only include this if changing the group's path.

Constraints:

Length
1 - 512
Pattern
(\u002F)|(\u002F[\u0021-\u007F]+\u002F)

ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithGroupName(String)
Sets the GroupName property
WithNewGroupName(String)
Sets the NewGroupName property
WithNewPath(String)
Sets the NewPath property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.IdentityManagement.Model..::..UpdateGroupRequest

See Also