deleteIdentityProvider method

Future<void> deleteIdentityProvider({
  1. required String identityProviderArn,
})

Deletes the identity provider.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter identityProviderArn : The ARN of the identity provider.

Implementation

Future<void> deleteIdentityProvider({
  required String identityProviderArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/identityProviders/${identityProviderArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}