deletePackagingConfiguration method
Deletes a MediaPackage VOD PackagingConfiguration resource.
May throw UnprocessableEntityException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.
Parameter id
:
The ID of the MediaPackage VOD PackagingConfiguration resource to delete.
Implementation
Future<void> deletePackagingConfiguration({
required String id,
}) async {
ArgumentError.checkNotNull(id, 'id');
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/packaging_configurations/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}