deleteTrustStore method

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

Deletes the trust store.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter trustStoreArn : The ARN of the trust store.

Implementation

Future<void> deleteTrustStore({
  required String trustStoreArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/trustStores/${trustStoreArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}