deleteIngressPoint method
Delete an ingress endpoint resource.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter ingressPointId :
The identifier of the ingress endpoint resource that you want to delete.
Implementation
Future<void> deleteIngressPoint({
required String ingressPointId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.0',
'X-Amz-Target': 'MailManagerSvc.DeleteIngressPoint'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'IngressPointId': ingressPointId,
},
);
}