describeControlPanel method
Displays details about a control panel.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter controlPanelArn :
The Amazon Resource Name (ARN) of the control panel.
Implementation
Future<DescribeControlPanelResponse> describeControlPanel({
required String controlPanelArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/controlpanel/${Uri.encodeComponent(controlPanelArn)}',
exceptionFnMap: _exceptionFns,
);
return DescribeControlPanelResponse.fromJson(response);
}