Update Group
AutomatR.AWS.Activities.UpdateGroup
The "Update Group" activity in AutomatR is part of the AWS Identity and Access Management (IAM) activities package, allowing you to update the specified IAM group. This activity provides the flexibility to modify the IAM group's attributes, such as the group name, path, etc., facilitating the efficient management of IAM groups.
Properties
Name | Description |
---|---|
Input | |
Access Key ID | Provides the encrypted access key ID for your AWS account, enabling connection to the Amazon Recognition service. String variables containing the access key ID. |
Group Name | Specifies the name of the IAM group that you want to update. String variables containing the group name. |
New Group Name | Specifies the new name for the IAM group. String variables containing the new group name. |
Path | Specifies the desired path for the IAM group. If no path is set, it defaults to a forward slash ("/"). String variables containing the path. |
Region | Specifies the desired region in which you would like to update the IAM group. RegionEndpoint variables containing the AWS region. |
Secret Access Key | Provides the encrypted secret access key ID for your AWS account, enabling connection to the Amazon Recognition service. String variables containing the secret access key. |
Misc | |
Display Name | Provides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name. |
Optional | |
Delay | Specifies the amount of time (in seconds) to wait before executing the "Update Group" activity. This can be useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1. |
Output | |
Group | Obtains updated information about an IAM group and stores the result in a GetGroupResponse variable format for further processing. |
How to use:
- Drag and drop the "Update Group" activity onto the workflow.
- Configure the properties by providing the access key ID, secret access key, region, group name, new group name, and optionally the path.
- Optionally, configure the delay and customize the display name.
- Execute the workflow to update the specified IAM group.
Example: Consider an example where the "Update Group" activity is used to update an IAM group named "Developers" to a new name "Engineers" with a custom path:
Update Group:
Display Name: "Update IAM Group"
Access Key ID: "{YourAccessKey}"
Secret Access Key: "{YourSecretKey}"
Region: "us-east-1"
Group Name: "Developers"
New Group Name: "Engineers"
Path: "/CustomPath/"
Group: updatedGroupInfo
In this example, the activity updates the IAM group named "Developers" to "Engineers" within the specified custom path "/CustomPath/" in the "us-east-1" region. The updated information about the IAM group is stored in the variable "updatedGroupInfo" for further processing.