disassociateTrustStore method

Future<void> disassociateTrustStore({
  1. required String portalArn,
})

Disassociates a trust store from a web portal.

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

Parameter portalArn : The ARN of the web portal.

Implementation

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