deleteQev2IdcApplication method
Deletes an Amazon Redshift Query Editor (QEV2) IAM Identity Center application.
May throw DependentServiceAccessDeniedFault.
May throw DependentServiceUnavailableFault.
May throw Qev2IdcApplicationNotExistsFault.
May throw UnsupportedOperationFault.
Parameter qev2IdcApplicationArn :
The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2)
IAM Identity Center application to delete.
Implementation
Future<void> deleteQev2IdcApplication({
required String qev2IdcApplicationArn,
}) async {
final $request = <String, String>{
'Qev2IdcApplicationArn': qev2IdcApplicationArn,
};
await _protocol.send(
$request,
action: 'DeleteQev2IdcApplication',
version: '2012-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}