deleteApplication method
Deletes an application and its associated configuration, including IAM Identity Center settings.
Parameter applicationId :
The unique identifier of the application to delete.
Implementation
Future<void> deleteApplication({
required String applicationId,
}) async {
final $payload = <String, dynamic>{
'applicationId': applicationId,
};
await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DeleteApplication',
exceptionFnMap: _exceptionFns,
);
}