deleteTieringConfiguration method

Future<void> deleteTieringConfiguration({
  1. required String tieringConfigurationName,
})

Deletes the tiering configuration specified by a tiering configuration name.

May throw InvalidParameterValueException. May throw MissingParameterValueException. May throw ResourceNotFoundException. May throw ServiceUnavailableException.

Parameter tieringConfigurationName : The unique name of a tiering configuration.

Implementation

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