disableProactiveEngagement method

Future<void> disableProactiveEngagement()

Removes authorization from the DDoS Response Team (DRT) to notify contacts about escalations to the DRT and to initiate proactive customer support.

May throw InternalErrorException. May throw InvalidOperationException. May throw InvalidParameterException. May throw ResourceNotFoundException. May throw OptimisticLockException.

Implementation

Future<void> disableProactiveEngagement() async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSShield_20160616.DisableProactiveEngagement'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
  );
}