deleteLicenseEndpoint method

Future<void> deleteLicenseEndpoint({
  1. required String licenseEndpointId,
})

Deletes a license endpoint.

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

Parameter licenseEndpointId : The license endpoint ID of the license endpoint to delete.

Implementation

Future<void> deleteLicenseEndpoint({
  required String licenseEndpointId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/2023-10-12/license-endpoints/${Uri.encodeComponent(licenseEndpointId)}',
    exceptionFnMap: _exceptionFns,
  );
}