deleteControlPanel method

Future<void> deleteControlPanel({
  1. required String controlPanelArn,
})

Deletes a control panel.

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

Parameter controlPanelArn : The Amazon Resource Name (ARN) of the control panel.

Implementation

Future<void> deleteControlPanel({
  required String controlPanelArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/controlpanel/${Uri.encodeComponent(controlPanelArn)}',
    exceptionFnMap: _exceptionFns,
  );
}