disassociateDataProtectionSettings method
Disassociates data protection settings 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> disassociateDataProtectionSettings({
required String portalArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/portals/${portalArn.split('/').map(Uri.encodeComponent).join('/')}/dataProtectionSettings',
exceptionFnMap: _exceptionFns,
);
}