deleteIdentitySource method
Deletes an identity source. For more information, see Identity Source in the Multi-party approval User Guide.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter identitySourceArn :
Amazon Resource Name (ARN) for identity source.
Implementation
Future<void> deleteIdentitySource({
required String identitySourceArn,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/identity-sources/${Uri.encodeComponent(identitySourceArn)}',
exceptionFnMap: _exceptionFns,
);
}