deleteOutpost method

Future<void> deleteOutpost({
  1. required String outpostId,
})

Deletes the specified Outpost.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw NotFoundException. May throw ValidationException.

Parameter outpostId : The ID or ARN of the Outpost.

Implementation

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