describeFramework method

Future<DescribeFrameworkOutput> describeFramework({
  1. required String frameworkName,
})

Returns the framework details for the specified FrameworkName.

May throw InvalidParameterValueException. May throw MissingParameterValueException. May throw ResourceNotFoundException. May throw ServiceUnavailableException.

Parameter frameworkName : The unique name of a framework.

Implementation

Future<DescribeFrameworkOutput> describeFramework({
  required String frameworkName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/audit/frameworks/${Uri.encodeComponent(frameworkName)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeFrameworkOutput.fromJson(response);
}