getDataflowEndpointGroup method
Future<GetDataflowEndpointGroupResponse>
getDataflowEndpointGroup({
- required String dataflowEndpointGroupId,
Returns the dataflow endpoint group.
May throw DependencyException.
May throw InvalidParameterException.
May throw ResourceNotFoundException.
Parameter dataflowEndpointGroupId :
UUID of a dataflow endpoint group.
Implementation
Future<GetDataflowEndpointGroupResponse> getDataflowEndpointGroup({
required String dataflowEndpointGroupId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/dataflowEndpointGroup/${Uri.encodeComponent(dataflowEndpointGroupId)}',
exceptionFnMap: _exceptionFns,
);
return GetDataflowEndpointGroupResponse.fromJson(response);
}