List Template Group Access Control Entries
pcaconnectorad_list_template_group_access_control_entries | R Documentation |
Lists group access control entries you created¶
Description¶
Lists group access control entries you created.
Usage¶
pcaconnectorad_list_template_group_access_control_entries(MaxResults,
NextToken, TemplateArn)
Arguments¶
MaxResults |
Use this parameter when paginating results to specify the maximum
number of items to return in the response on each page. If additional
items exist beyond the number you specify, the |
NextToken |
Use this parameter when paginating results in a subsequent
request after you receive a response with truncated results. Set it to
the value of the |
TemplateArn |
[required] The Amazon Resource Name (ARN) that was returned when
you called |
Value¶
A list with the following syntax:
list(
AccessControlEntries = list(
list(
AccessRights = list(
AutoEnroll = "ALLOW"|"DENY",
Enroll = "ALLOW"|"DENY"
),
CreatedAt = as.POSIXct(
"2015-01-01"
),
GroupDisplayName = "string",
GroupSecurityIdentifier = "string",
TemplateArn = "string",
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_template_group_access_control_entries(
MaxResults = 123,
NextToken = "string",
TemplateArn = "string"
)