getConfigurationCheckOperation method

Future<GetConfigurationCheckOperationOutput> getConfigurationCheckOperation({
  1. required String operationId,
})

Gets the details of a configuration check operation by specifying the operation ID.

May throw InternalServerException. May throw ValidationException.

Parameter operationId : The ID of the configuration check operation.

Implementation

Future<GetConfigurationCheckOperationOutput> getConfigurationCheckOperation({
  required String operationId,
}) async {
  final $payload = <String, dynamic>{
    'OperationId': operationId,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/get-configuration-check-operation',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfigurationCheckOperationOutput.fromJson(response);
}