getConnectInstanceConfig method
Future<GetConnectInstanceConfigResponse>
getConnectInstanceConfig({
- required String connectInstanceId,
Get the specific Connect instance config.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Implementation
Future<GetConnectInstanceConfigResponse> getConnectInstanceConfig({
required String connectInstanceId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/connect-instance/${Uri.encodeComponent(connectInstanceId)}/config',
exceptionFnMap: _exceptionFns,
);
return GetConnectInstanceConfigResponse.fromJson(response);
}