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¶
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
create_template
.
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"
)
)
)