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