List Principals
ram_list_principals | R Documentation |
Lists the principals that you are sharing resources with or that are sharing resources with you¶
Description¶
Lists the principals that you are sharing resources with or that are sharing resources with you.
Usage¶
ram_list_principals(resourceOwner, resourceArn, principals,
resourceType, resourceShareArns, nextToken, maxResults)
Arguments¶
resourceOwner |
[required] Specifies that you want to list information for only resource shares that match the following:
|
resourceArn |
Specifies that you want to list principal information for the resource share with the specified Amazon Resource Name (ARN). |
principals |
Specifies that you want to list information for only the listed principals. You can include the following values:
Not all resource types can be shared with IAM roles and users. For more information, see Sharing with IAM roles and users in the Resource Access Manager User Guide. |
resourceType |
Specifies that you want to list information for only principals associated with resource shares that include the specified resource type. For a list of valid values, query the
|
resourceShareArns |
Specifies that you want to list information for only principals associated with the resource shares specified by a list the Amazon Resource Names (ARNs). |
nextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
maxResults |
Specifies the total number of results that you want included on
each page of the response. If you do not include this parameter, it
defaults to a value that is specific to the operation. If additional
items exist beyond the number you specify, the |
Value¶
A list with the following syntax:
list(
principals = list(
list(
id = "string",
resourceShareArn = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedTime = as.POSIXct(
"2015-01-01"
),
external = TRUE|FALSE
)
),
nextToken = "string"
)
Request syntax¶
svc$list_principals(
resourceOwner = "SELF"|"OTHER-ACCOUNTS",
resourceArn = "string",
principals = list(
"string"
),
resourceType = "string",
resourceShareArns = list(
"string"
),
nextToken = "string",
maxResults = 123
)