getPackageConfiguration method
Gets information about the specified software package's configuration.
Requires permission to access the GetPackageConfiguration action.
May throw InternalServerException.
May throw ThrottlingException.
Implementation
Future<GetPackageConfigurationResponse> getPackageConfiguration() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/package-configuration',
exceptionFnMap: _exceptionFns,
);
return GetPackageConfigurationResponse.fromJson(response);
}