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