in aws_ros2_common/src/sdk_utils/ros2_node_parameter_reader.cpp [71:78]
AwsError Ros2NodeParameterReader::ReadParam(const ParameterPath & param_path, Aws::String &out) const {
std::string value;
AwsError result = ReadParam(param_path, value);
if (result == AWS_ERR_OK) {
out = Aws::String(value.c_str());
}
return result;
}