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