Describe Iam Policy Assignment
quicksight_describe_iam_policy_assignment | R Documentation |
Describes an existing IAM policy assignment, as specified by the assignment name¶
Description¶
Describes an existing IAM policy assignment, as specified by the assignment name.
Usage¶
quicksight_describe_iam_policy_assignment(AwsAccountId, AssignmentName,
Namespace)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the assignment that you want to describe. |
AssignmentName |
[required] The name of the assignment, also called a rule. |
Namespace |
[required] The namespace that contains the assignment. |
Value¶
A list with the following syntax:
list(
IAMPolicyAssignment = list(
AwsAccountId = "string",
AssignmentId = "string",
AssignmentName = "string",
PolicyArn = "string",
Identities = list(
list(
"string"
)
),
AssignmentStatus = "ENABLED"|"DRAFT"|"DISABLED"
),
RequestId = "string",
Status = 123
)
Request syntax¶
svc$describe_iam_policy_assignment(
AwsAccountId = "string",
AssignmentName = "string",
Namespace = "string"
)