describePackagingConfiguration method
Future<DescribePackagingConfigurationResponse>
describePackagingConfiguration({
- required String id,
Returns a description of a MediaPackage VOD PackagingConfiguration resource.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw ServiceUnavailableException.
May throw TooManyRequestsException.
May throw UnprocessableEntityException.
Parameter id :
The ID of a MediaPackage VOD PackagingConfiguration resource.
Implementation
Future<DescribePackagingConfigurationResponse>
describePackagingConfiguration({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/packaging_configurations/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return DescribePackagingConfigurationResponse.fromJson(response);
}