batchGetMembershipDatasources method

Future<BatchGetMembershipDatasourcesResponse> batchGetMembershipDatasources({
  1. required List<String> graphArns,
})

Gets information on the data source package history for an account.

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

Parameter graphArns : The ARN of the behavior graph.

Implementation

Future<BatchGetMembershipDatasourcesResponse> batchGetMembershipDatasources({
  required List<String> graphArns,
}) async {
  final $payload = <String, dynamic>{
    'GraphArns': graphArns,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/membership/datasources/get',
    exceptionFnMap: _exceptionFns,
  );
  return BatchGetMembershipDatasourcesResponse.fromJson(response);
}