getIdentitySource method

Future<GetIdentitySourceResponse> getIdentitySource({
  1. required String identitySourceArn,
})

Returns details for an identity source. For more information, see Identity Source in the Multi-party approval User Guide.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter identitySourceArn : Amazon Resource Name (ARN) for the identity source.

Implementation

Future<GetIdentitySourceResponse> getIdentitySource({
  required String identitySourceArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/identity-sources/${Uri.encodeComponent(identitySourceArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetIdentitySourceResponse.fromJson(response);
}