Update Role
iam_update_role | R Documentation |
Updates the description or maximum session duration setting of a role¶
Description¶
Updates the description or maximum session duration setting of a role.
Usage¶
iam_update_role(RoleName, Description, MaxSessionDuration)
Arguments¶
RoleName |
[required] The name of the role that you want to modify. |
Description |
The new description that you want to apply to the specified role. |
MaxSessionDuration |
The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours. Anyone who assumes the role from the CLI or API can use the
IAM role credentials provided by Amazon EC2 instances assigned to the role are not subject to the specified maximum session duration. |
Value¶
An empty list.
Request syntax¶
svc$update_role(
RoleName = "string",
Description = "string",
MaxSessionDuration = 123
)