deleteRedshiftIdcApplication method
Deletes an Amazon Redshift IAM Identity Center application.
May throw DependentServiceAccessDeniedFault.
May throw DependentServiceUnavailableFault.
May throw RedshiftIdcApplicationNotExistsFault.
May throw UnsupportedOperationFault.
Parameter redshiftIdcApplicationArn :
The ARN for a deleted Amazon Redshift IAM Identity Center application.
Implementation
Future<void> deleteRedshiftIdcApplication({
required String redshiftIdcApplicationArn,
}) async {
final $request = <String, String>{
'RedshiftIdcApplicationArn': redshiftIdcApplicationArn,
};
await _protocol.send(
$request,
action: 'DeleteRedshiftIdcApplication',
version: '2012-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}