deleteTrustStore method

Future<void> deleteTrustStore({
  1. required String trustStoreArn,
})

Deletes a trust store.

May throw TrustStoreInUseException. May throw TrustStoreNotFoundException.

Parameter trustStoreArn : The Amazon Resource Name (ARN) of the trust store.

Implementation

Future<void> deleteTrustStore({
  required String trustStoreArn,
}) async {
  final $request = <String, String>{
    'TrustStoreArn': trustStoreArn,
  };
  await _protocol.send(
    $request,
    action: 'DeleteTrustStore',
    version: '2015-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    resultWrapper: 'DeleteTrustStoreResult',
  );
}