describeAddonConfiguration method
Returns configuration options.
May throw InvalidParameterException.
May throw ResourceNotFoundException.
May throw ServerException.
Parameter addonName :
The name of the add-on. The name must match one of the names returned by
DescribeAddonVersions.
Parameter addonVersion :
The version of the add-on. The version must match one of the versions
returned by
DescribeAddonVersions .
Implementation
Future<DescribeAddonConfigurationResponse> describeAddonConfiguration({
required String addonName,
required String addonVersion,
}) async {
final $query = <String, List<String>>{
'addonName': [addonName],
'addonVersion': [addonVersion],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/addons/configuration-schemas',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return DescribeAddonConfigurationResponse.fromJson(response);
}