deleteTemplateGroupAccessControlEntry method

Future<void> deleteTemplateGroupAccessControlEntry({
  1. required String groupSecurityIdentifier,
  2. required String templateArn,
})

Deletes a group access control entry.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter groupSecurityIdentifier : Security identifier (SID) of the group object from Active Directory. The SID starts with "S-".

Parameter templateArn : The Amazon Resource Name (ARN) that was returned when you called CreateTemplate.

Implementation

Future<void> deleteTemplateGroupAccessControlEntry({
  required String groupSecurityIdentifier,
  required String templateArn,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/templates/${Uri.encodeComponent(templateArn)}/accessControlEntries/${Uri.encodeComponent(groupSecurityIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}