deleteApnsVoipChannel method

Future<DeleteApnsVoipChannelResponse> deleteApnsVoipChannel({
  1. required String applicationId,
})

Disables the APNs VoIP channel for an application and deletes any existing settings for the channel.

May throw BadRequestException. May throw InternalServerErrorException. May throw PayloadTooLargeException. May throw ForbiddenException. May throw NotFoundException. May throw MethodNotAllowedException. May throw TooManyRequestsException.

Parameter applicationId : The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

Implementation

Future<DeleteApnsVoipChannelResponse> deleteApnsVoipChannel({
  required String applicationId,
}) async {
  ArgumentError.checkNotNull(applicationId, 'applicationId');
  final response = await _protocol.sendRaw(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/v1/apps/${Uri.encodeComponent(applicationId)}/channels/apns_voip',
    exceptionFnMap: _exceptionFns,
  );
  final $json = await _s.jsonFromResponse(response);
  return DeleteApnsVoipChannelResponse(
    aPNSVoipChannelResponse: APNSVoipChannelResponse.fromJson($json),
  );
}