deleteConnectClientAddIn method
Deletes a client-add-in for Connect Customer that is configured within a directory.
May throw AccessDeniedException.
May throw InvalidParameterValuesException.
May throw ResourceNotFoundException.
Parameter addInId :
The identifier of the client add-in to delete.
Parameter resourceId :
The directory identifier for which the client add-in is configured.
Implementation
Future<void> deleteConnectClientAddIn({
required String addInId,
required String resourceId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'WorkspacesService.DeleteConnectClientAddIn'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'AddInId': addInId,
'ResourceId': resourceId,
},
);
}