List Profile Shares
| wellarchitected_list_profile_shares | R Documentation |
List profile shares¶
Description¶
List profile shares.
Usage¶
Arguments¶
ProfileArn[required] The profile ARN.
SharedWithPrefixThe Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the profile is shared.
NextTokenMaxResultsThe maximum number of results to return for this request.
Status
Value¶
A list with the following syntax:
list(
ProfileShareSummaries = list(
list(
ShareId = "string",
SharedWith = "string",
Status = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|"ASSOCIATING"|"ASSOCIATED"|"FAILED",
StatusMessage = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_profile_shares(
ProfileArn = "string",
SharedWithPrefix = "string",
NextToken = "string",
MaxResults = 123,
Status = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|"ASSOCIATING"|"ASSOCIATED"|"FAILED"
)