Get Template Group Access Control Entry
pcaconnectorad_get_template_group_access_control_entry | R Documentation |
Retrieves the group access control entries for a template¶
Description¶
Retrieves the group access control entries for a template.
Usage¶
pcaconnectorad_get_template_group_access_control_entry(
GroupSecurityIdentifier, TemplateArn)
Arguments¶
GroupSecurityIdentifier |
[required] Security identifier (SID) of the group object from Active Directory. The SID starts with "S-". |
TemplateArn |
[required] The Amazon Resource Name (ARN) that was returned when
you called |
Value¶
A list with the following syntax:
list(
AccessControlEntry = 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"
)
)
)
Request syntax¶
svc$get_template_group_access_control_entry(
GroupSecurityIdentifier = "string",
TemplateArn = "string"
)