List Associated Access Policies
eks_list_associated_access_policies | R Documentation |
Lists the access policies associated with an access entry¶
Description¶
Lists the access policies associated with an access entry.
Usage¶
eks_list_associated_access_policies(clusterName, principalArn,
maxResults, nextToken)
Arguments¶
clusterName |
[required] The name of your cluster. |
principalArn |
[required] The ARN of the IAM principal for the
|
maxResults |
The maximum number of results, returned in paginated output. You
receive |
nextToken |
The This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
clusterName = "string",
principalArn = "string",
nextToken = "string",
associatedAccessPolicies = list(
list(
policyArn = "string",
accessScope = list(
type = "cluster"|"namespace",
namespaces = list(
"string"
)
),
associatedAt = as.POSIXct(
"2015-01-01"
),
modifiedAt = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_associated_access_policies(
clusterName = "string",
principalArn = "string",
maxResults = 123,
nextToken = "string"
)