deleteMLInputChannelData method

Future<void> deleteMLInputChannelData({
  1. required String membershipIdentifier,
  2. required String mlInputChannelArn,
})

Provides the information necessary to delete an ML input channel.

May throw AccessDeniedException. May throw ConflictException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter membershipIdentifier : The membership ID of the membership that contains the ML input channel you want to delete.

Parameter mlInputChannelArn : The Amazon Resource Name (ARN) of the ML input channel that you want to delete.

Implementation

Future<void> deleteMLInputChannelData({
  required String membershipIdentifier,
  required String mlInputChannelArn,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/memberships/${Uri.encodeComponent(membershipIdentifier)}/ml-input-channels/${Uri.encodeComponent(mlInputChannelArn)}',
    exceptionFnMap: _exceptionFns,
  );
}