Lists the principals that you are sharing resources with or that are sharing resources with you
Source:R/ram_operations.R
ram_list_principals.RdLists the principals that you are sharing resources with or that are sharing resources with you.
See https://www.paws-r-sdk.com/docs/ram_list_principals/ for full documentation.
Usage
ram_list_principals(
resourceOwner,
resourceArn = NULL,
principals = NULL,
resourceType = NULL,
resourceShareArns = NULL,
nextToken = NULL,
maxResults = NULL
)Arguments
- resourceOwner
[required] Specifies that you want to list information for only resource shares that match the following:
SELF– principals that your account is sharing resources withOTHER-ACCOUNTS– principals that are sharing resources with your account
- 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:
An Amazon Web Services account ID, for example:
123456789012An Amazon Resource Name (ARN) of an organization in Organizations, for example:
organizations::123456789012:organization/o-exampleorgidAn ARN of an organizational unit (OU) in Organizations, for example:
organizations::123456789012:ou/o-exampleorgid/ou-examplerootid-exampleouid123An ARN of an IAM role, for example:
iam::123456789012:role/rolenameAn ARN of an IAM user, for example:
iam::123456789012user/usernameA service principal name, for example:
service-id.amazonaws.com
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
list_resource_typesoperation.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
NextTokenresponse in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call'sNextTokenresponse to request the next page of results.- 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
NextTokenresponse element is returned with a value (not null). Include the specified value as theNextTokenrequest parameter in the next call to the operation to get the next part of the results. Note that the service might return fewer results than the maximum even when there are more results available. You should checkNextTokenafter every operation to ensure that you receive all of the results.