deleteAssetType method

Future<void> deleteAssetType({
  1. required String identifier,
})

Deletes an asset type from Glue Data Catalog.

May throw AccessDeniedException. May throw ConcurrentModificationException. May throw InternalServiceException. May throw InvalidInputException. May throw ThrottlingException.

Parameter identifier : The identifier of the asset type to delete.

Implementation

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