iam_get_role: Retrieves information about the specified role, including the role's
path, GUID, ARN, and the role's trust policy that grants permission to
assume the role
Description
Retrieves information about the specified role, including the role's
path, GUID, ARN, and the role's trust policy that grants permission to
assume the role. For more information about roles, see Working with Roles.
Usage
iam_get_role(RoleName)
Arguments
RoleName
[required] The name of the IAM role to get information about.
This parameter allows (through its regex pattern) a string of characters
consisting of upper and lowercase alphanumeric characters with no
spaces. You can also include any of the following characters: \_+=,.@-
Request syntax
svc$get_role(
RoleName = "string"
)
Details
Policies returned by this API are URL-encoded compliant with RFC 3986. You can use a URL decoding
method to convert the policy back to plain JSON text. For example, if
you use Java, you can use the decode method of the
java.net.URLDecoder utility class in the Java SDK. Other languages and
SDKs provide similar functionality.
# NOT RUN {# The following command gets information about the role named Test-Role.# }# NOT RUN {svc$get_role(
RoleName = "Test-Role")
# }# NOT RUN {# }