describeProfilingGroup method
Future<DescribeProfilingGroupResponse>
describeProfilingGroup({
- required String profilingGroupName,
Returns a
ProfilingGroupDescription object that contains
information about the requested profiling group.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter profilingGroupName :
The name of the profiling group to get information about.
Implementation
Future<DescribeProfilingGroupResponse> describeProfilingGroup({
required String profilingGroupName,
}) async {
final response = await _protocol.sendRaw(
payload: null,
method: 'GET',
requestUri: '/profilingGroups/${Uri.encodeComponent(profilingGroupName)}',
exceptionFnMap: _exceptionFns,
);
final $json = await _s.jsonFromResponse(response);
return DescribeProfilingGroupResponse(
profilingGroup: ProfilingGroupDescription.fromJson($json),
);
}